chore: cleanup isHydrated (#2614)
Co-authored-by: patak <583075+patak-dev@users.noreply.github.com>
This commit is contained in:
parent
6b40319723
commit
eddbb1eee9
5 changed files with 14 additions and 14 deletions
|
@ -88,23 +88,23 @@ function deletePollOption(index: number) {
|
|||
const expiresInOptions = computed(() => [
|
||||
{
|
||||
seconds: 1 * 60 * 60,
|
||||
label: isHydrated.value ? t('time_ago_options.hour_future', 1) : '',
|
||||
label: t('time_ago_options.hour_future', 1),
|
||||
},
|
||||
{
|
||||
seconds: 2 * 60 * 60,
|
||||
label: isHydrated.value ? t('time_ago_options.hour_future', 2) : '',
|
||||
label: t('time_ago_options.hour_future', 2),
|
||||
},
|
||||
{
|
||||
seconds: 1 * 24 * 60 * 60,
|
||||
label: isHydrated.value ? t('time_ago_options.day_future', 1) : '',
|
||||
label: t('time_ago_options.day_future', 1),
|
||||
},
|
||||
{
|
||||
seconds: 2 * 24 * 60 * 60,
|
||||
label: isHydrated.value ? t('time_ago_options.day_future', 2) : '',
|
||||
label: t('time_ago_options.day_future', 2),
|
||||
},
|
||||
{
|
||||
seconds: 7 * 24 * 60 * 60,
|
||||
label: isHydrated.value ? t('time_ago_options.day_future', 7) : '',
|
||||
label: t('time_ago_options.day_future', 7),
|
||||
},
|
||||
])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue