Open
Conversation
- Fix people form: data_method/data_confirm → turbo_method/turbo_confirm - Fix devise registration: confirm → turbo_confirm - Fix workshop ideas: confirm → turbo_confirm (also fix duplicate message text) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
maebeale
commented
Feb 16, 2026
| import "@rails/activestorage" | ||
| import * as ActiveStorage from "@rails/activestorage"; | ||
| ActiveStorage.start(); | ||
|
|
Collaborator
Author
There was a problem hiding this comment.
calling out again that we're now loading active storage here.
maebeale
commented
Feb 16, 2026
| @@ -34,6 +34,6 @@ | |||
|
|
|||
| <h3>Cancel my account</h3> | |||
|
|
|||
| <p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %></p> | |||
| <p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { turbo_confirm: "Are you sure?" }, method: :delete %></p> | |||
Collaborator
Author
There was a problem hiding this comment.
changing to turbo methods throughout
maebeale
commented
Feb 16, 2026
| @@ -11,9 +11,6 @@ | |||
| # Precompile additional assets. | |||
| # application.js, application.css, and all non-JS/CSS in the app/assets | |||
| # folder are already added. | |||
| Rails.application.config.assets.precompile += %w[ admin.js admin.css foundation_emails.css ] | |||
| Rails.application.config.assets.precompile += %w[awbw/foundation_emails-20250913.css] | |||
|
|
|||
Collaborator
Author
There was a problem hiding this comment.
remove call to compile old assets
- Remove broken @font-face for deleted Telefon-Bold.ttf - Replace Telefon Bold with sans-serif fallback in share portal - Remove select2() calls from 5 legacy report/workshop views - Delete CKEditor vendor directory and models (gem already disabled) - Delete select2 CSS from public/vendor - Clean up empty vendor/assets directories Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
CSS is served via Vite, not the Sprockets pipeline. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Keep Telefon-Bold.ttf since it's actively used in the share portal layout and the global @font-face declaration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the goal of this PR and why is this important?
How did you approach the change?
Anything else to add?