Skip to content

Commit

Permalink
style: Update AgendaMobileBar.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel authored Aug 24, 2024
1 parent a2f8dfd commit 41e4f52
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/agenda/AgendaMobileBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

<script setup>
import { computed, h } from 'vue'
import {
NBadge,
NDropdown,
Expand Down Expand Up @@ -84,14 +83,14 @@ const jumpToDayOptions = computed(() => {
days.push(optionToLink({
label: 'Jump to Now',
key: 'now',
icon: () => h('i', { class: 'bi bi-arrow-down-right-square text-red' }),
icon: () => h('i', { class: 'bi bi-arrow-down-right-square text-red' })
}))
}
for (const day of agendaStore.meetingDays) {
days.push(optionToLink({
label: `Jump to ${day.label}`,
key: day.slug,
icon: () => h('i', { class: 'bi bi-arrow-down-right-square' }),
icon: () => h('i', { class: 'bi bi-arrow-down-right-square' })
}))
}
return days
Expand Down

0 comments on commit 41e4f52

Please sign in to comment.