From 7b86d93ed74972bb8b74a38ad8b8359c3e9472eb Mon Sep 17 00:00:00 2001 From: Karine Vieira Date: Mon, 17 Feb 2025 14:41:11 -0300 Subject: [PATCH 1/2] upgrade phlex and phlex-rails to 2.0.2 --- Gemfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2eef8aae..ed460fec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,16 +1,16 @@ GIT remote: https://github.com/phlex-ruby/phlex-rails.git - revision: 80388e7c1a5ba53f11e8de45eeb250bb99bc9060 + revision: be91ab54bc1b0497e4cc72f1f435524811e0be76 specs: - phlex-rails (2.0.0.beta2) - phlex (= 2.0.0.beta2) + phlex-rails (2.0.2) + phlex (~> 2.0.2) railties (>= 6.1, < 9) GIT remote: https://github.com/phlex-ruby/phlex.git - revision: f02859abaf1397d4df37c23b12646d47a55e5b46 + revision: bdff5f6800d36717bd576c8af8331ebeca8b4b3b specs: - phlex (2.0.0.beta2) + phlex (2.0.2) GIT remote: https://github.com/ruby-ui/ruby_ui.git From 1ebc7c647007fe8d1faada8eb00d7a7d063af651 Mon Sep 17 00:00:00 2001 From: Karine Vieira Date: Mon, 17 Feb 2025 14:41:37 -0300 Subject: [PATCH 2/2] fix missing keyword "component_name" error --- app/components/component_setup/tabs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/component_setup/tabs.rb b/app/components/component_setup/tabs.rb index d223017d..822816f4 100644 --- a/app/components/component_setup/tabs.rb +++ b/app/components/component_setup/tabs.rb @@ -12,7 +12,7 @@ def initialize(component_name:) def view_template Heading(level: 2) { "Installation" } - Tabs(default_value: "cli", class: "w-full") do + RubyUI::Tabs(default_value: "cli", class: "w-full") do TabsList do TabsTrigger(value: "cli") { "CLI" } TabsTrigger(value: "manual") { "Manual" }