Fixed badge color
This commit is contained in:
@@ -187,19 +187,19 @@ function deployDeleteModal() {
|
|||||||
</menu>
|
</menu>
|
||||||
|
|
||||||
<nav v-if="event.startDate && event.endDate" class="mt-2 flex gap-2">
|
<nav v-if="event.startDate && event.endDate" class="mt-2 flex gap-2">
|
||||||
<UiBadge class="hover:bg-indigo-400 dark:hover:bg-slate-300" as-child>
|
<UiBadge as-child>
|
||||||
<button
|
<button
|
||||||
class="flex gap-1"
|
class="flex gap-1 cursor-pointer"
|
||||||
title="Naviguer au début"
|
:title="$t('entity.calendar.event.gotoStart')"
|
||||||
@click="handleJumpToDate(event.startDate!)"
|
@click="handleJumpToDate(event.startDate!)"
|
||||||
>
|
>
|
||||||
<PhHourglassHigh size="16" weight="fill" /> {{ $t('entity.calendar.event.isStart') }}
|
<PhHourglassHigh size="16" weight="fill" /> {{ $t('entity.calendar.event.isStart') }}
|
||||||
</button>
|
</button>
|
||||||
</UiBadge>
|
</UiBadge>
|
||||||
<UiBadge class="hover:bg-indigo-400 dark:hover:bg-slate-300" as-child title="Naviguer à la fin">
|
<UiBadge as-child>
|
||||||
<button
|
<button
|
||||||
class="flex gap-1"
|
class="flex gap-1 cursor-pointer"
|
||||||
title="Naviguer à la fin"
|
:title="$t('entity.calendar.event.gotoEnd')"
|
||||||
@click="handleJumpToDate(event.endDate!)"
|
@click="handleJumpToDate(event.endDate!)"
|
||||||
>
|
>
|
||||||
<PhHourglassLow size="16" weight="fill" /> {{ $t('entity.calendar.event.isEnd') }}
|
<PhHourglassLow size="16" weight="fill" /> {{ $t('entity.calendar.event.isEnd') }}
|
||||||
|
|||||||
@@ -206,6 +206,8 @@ export default defineI18nConfig(() => ({
|
|||||||
title: "Event title",
|
title: "Event title",
|
||||||
isStart: "Start",
|
isStart: "Start",
|
||||||
isEnd: "End",
|
isEnd: "End",
|
||||||
|
gotoStart: "Go to the start of this event",
|
||||||
|
gotoEnd: "Go to the end of this event",
|
||||||
isHidden: "Hidden",
|
isHidden: "Hidden",
|
||||||
isPublic: "Public",
|
isPublic: "Public",
|
||||||
hiddenLabel: "Hide this event",
|
hiddenLabel: "Hide this event",
|
||||||
@@ -539,6 +541,8 @@ export default defineI18nConfig(() => ({
|
|||||||
title: "Titre de l'évènement",
|
title: "Titre de l'évènement",
|
||||||
isStart: "Début",
|
isStart: "Début",
|
||||||
isEnd: "Fin",
|
isEnd: "Fin",
|
||||||
|
gotoStart: "Aller au début de l'évènement",
|
||||||
|
gotoEnd: "Aller à la fin de l'évènement",
|
||||||
isHidden: "Privé",
|
isHidden: "Privé",
|
||||||
isPublic: "Public",
|
isPublic: "Public",
|
||||||
hiddenLabel: "Rendre l'évènement privé",
|
hiddenLabel: "Rendre l'évènement privé",
|
||||||
|
|||||||
Reference in New Issue
Block a user