Update README for Spring 2026 CS169L, Add CodeCov CI for new local repo, fix price field not loading on ticket page#402
Merged
cycomachead merged 26 commits intosnap-cloud:mainfrom Feb 27, 2026
Merged
Conversation
…et footer off" This reverts commit 972b821.
Add a local Badge
- Set value to f.object.price.to_f so number_field displays current amount - Add step: 0.01 and min: 0 for currency input Co-authored-by: Cursor <[email protected]>
Fix price field not loading on ticket edit page
Add CodeCov coverage to Spec, CodeCov Badge to README.
Tests that the happening_now action filters events by favourites and that vertical_schedule preserves the favourites query parameter on redirect.
The Happening Now tab wasn't passing the favs param, and the vertical_schedule redirect was dropping it. happening_now wasn't actually filtering events by favs found another bug i believe: the splash nav "Schedule" links at the top of each schedule view also don't preserve the param.
Small README Changes
cycomachead
approved these changes
Feb 27, 2026
| .form-group | ||
| = f.label :price | ||
| = f.number_field :price, class: 'form-control' | ||
| = f.number_field :price, class: 'form-control', value: f.object.price.to_f, step: 0.01, min: 0 |
Fix favs param getting lost when switching schedule tabs
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 this PR does:
This pull request fixes bug where the price did not load correctly on the ticket page. In addition, it updates the README and CI for the 2026 Spring offering of CS169L.