Browse Source

fix(file_sharing): Remove string concatenated translation

Signed-off-by: nfebe <fenn25.fn@gmail.com>
pull/53538/head
nfebe 5 months ago
committed by Ferdinand Thiessen
parent
commit
2131b16ced
  1. 2
      apps/files_sharing/src/components/ShareExpiryTime.vue

2
apps/files_sharing/src/components/ShareExpiryTime.vue

@ -9,7 +9,7 @@
<NcButton v-if="expiryTime"
class="hint-icon"
type="tertiary"
:aria-label="t('files_sharing', 'Share expiration: ') + new Date(expiryTime).toLocaleString()">
:aria-label="t('files_sharing', 'Share expiration: {date}', { date: new Date(expiryTime).toLocaleString() })">
<template #icon>
<ClockIcon :size="20" />
</template>

Loading…
Cancel
Save