-
Notifications
You must be signed in to change notification settings - Fork 9
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
Merge upstream #324
Merge upstream #324
Conversation
- Add required <tr> within <thead> - Add implicit <tbody> after <thead>
🚨 [security] Update rack: 2.2.6.2 → 2.2.6.3 (patch)
Font Awesome icon elements are intended to be empty. Extending the icon elements around adjacent text caused the text to be displayed in an irregular font.
Incidentally fulfills the same need as #2662
Resolves failure to display initial help text of difficulty level.
Tracks are otherwise undocumented for CfP respondents.
🚨 [security] Update rack: 2.2.6.3 → 2.2.6.4 (patch)
Update tilt: 2.0.10 → 2.1.0 (minor)
Update cancancan: 3.3.0 → 3.5.0 (minor)
Update to latest ruby 3.1 version
The bundle does this already.
for more terse logging
Introduces lograge
🚨 [security] Update nokogiri: 1.14.0 → 1.14.3 (patch)
Update addressable: 2.8.0 → 2.8.3 (patch)
Update rqrcode: 2.1.1 → 2.1.2 (patch)
….0.1 Update omniauth-github: 2.0.0 → 2.0.1 (patch)
Update delayed_job: 4.1.10 → 4.1.11 (patch)
Display track description on event proposal form
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.
OK, some small fixes to take care of two merge conflicts and a few things that could have gotten overwritten
word_count($('#event_submission_text').get(0), 'submission-count', max); | ||
}).trigger('change'); | ||
} | ||
$("#event_event_type_id").change(updateEventTypeRequirements); |
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.
Not sure if we should actually keep the word count for the #event_submission_text
field.
@@ -26,8 +26,7 @@ class EventScheduleSerializer < ActiveModel::Serializer | |||
attributes :date, :room | |||
|
|||
def date | |||
t = object.start_time | |||
t.blank? ? '' : %( #{I18n.l t, format: :short}#{t.formatted_offset(false)} ) | |||
object.start_time&.change(zone: object.event.program.conference.timezone) |
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 am not 100% of the implications of this change and the various timezone features.
|
||
def scheduled_date | ||
t = object.time | ||
t.blank? ? '' : %( #{I18n.l t, format: :short}#{t.formatted_offset(false)} ) | ||
object.time&.change(zone: object.program.conference.timezone) |
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.
Same here, unsure of this. But seems fine.
OK, as of now, all files have been reviews. things seem OK. ...now to tackle the spec failures. |
This reverts commit c643872.
Merge in recent-ish OSEM updates