-
Notifications
You must be signed in to change notification settings - Fork 22
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
Fix/styles #118
base: main
Are you sure you want to change the base?
Fix/styles #118
Conversation
…ript entrypoints to target methods to their own views
…er into fix/styles
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.
Quickly glanced through the changes, here's the first round of feedback.
I'll test this properly later.
package-lock.json
Outdated
@@ -26,7 +30,12 @@ | |||
"eslint-plugin-promise": "^3.8.0", | |||
"eslint-plugin-react": "^7.20.6", | |||
"eslint-plugin-standard": "^3.1.0", | |||
"sass-embedded": "~1.57.1", |
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.
Can you extract the package.json
related changes to another PR?
Gemfile.lock
Outdated
@@ -8,63 +8,63 @@ PATH | |||
GEM | |||
remote: https://rubygems.org/ | |||
specs: | |||
actioncable (6.1.7.6) |
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.
Can you extract the Gemfile.lock
related changes to another PR?
@@ -5,6 +5,7 @@ module TermCustomizer | |||
module Admin | |||
# This controller is the abstract class from which all other controllers | |||
# of this engine inherit. | |||
|
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.
Unnecessary change.
@@ -63,7 +63,7 @@ module Admin | |||
upload_test_file( | |||
Rack::Test::UploadedFile.new( | |||
file_fixture("set-translations.json"), | |||
"text/plain" | |||
"text/html" |
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.
I believe the correct MIME type for a JSON is application/json
.
Adds missing style changes for Decidim Version 0.28. Also changes the structure of JavaScript entrypoints to prevent unnecessary loading of JS code in views where it's not needed.
Also adds the breadcrumb functionality for module's page.