-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to phlex 2 beta #120
Conversation
@@ -1,6 +1,6 @@ | |||
# frozen_string_literal: true | |||
|
|||
class Docs::ComponentsTable < ApplicationComponent | |||
class Components::Docs::ComponentsTable < Components::Base |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you already are on Components directory, it means that you can use only Base make it less verbose
Components::Docs::ComponentsTable < Base
or even better:
module Components
module Docs
ComponentsTable < Base
end
end
end
bin/files_out
Outdated
@@ -0,0 +1,34 @@ | |||
#!/bin/bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it useful?
fixed by #128 |
This is updating phlex to version 2. There were quite a few changes needed