Skip to content

Commit

Permalink
minor adjustments to release 3.2.7 (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Aug 12, 2024
1 parent ba38be2 commit 98cd5dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/vue/src/components/NavMobile/NavMobile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ export default defineComponent({
// styles for default vs transparent header
// underline color and logo inversion styles handled within their respective components
&.-scrolled {
@apply fixed;
@media not print {
@apply fixed;
}
}
}
// vue-transition classes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const MultiDayEvent = {
...PageEduEventDetailData,
startDate: '2024-08-08',
endDate: '2024-08-12',
startDatetime: '2024-08-08T14:00:00-07:00',
startDatetime: '2024-08-08T11:00:00-07:00',
startTime: '15:00:00',
endDatetime: '2024-08-12T22:00:00-07:00'
}
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/utils/mixins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ export const mixinFormatEventTimeInHoursAndMinutes = (
// Event is less than 24 hours and spans 1 day
if (endTime) {
if (startDateDayjs.format('a') === endDateDayjs.format('a')) {
time = `${startDateDayjs.format('h:mm')} - ${endDateDayjs.format('h:mm a z')}`
time = `${startDateDayjs.format('h:mm')}-${endDateDayjs.format('h:mm a z')}`
} else {
time = `${startDateDayjs.format('h:mm a')} - ${endDateDayjs.format('h:mm a z')}`
}
Expand Down

0 comments on commit 98cd5dd

Please sign in to comment.