1
0

fix: vue-i18n global scope (#2366)

Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2366
Reviewed-by: konrad <k@knt.li>
Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
Dominik Pschenitschni
2022-09-15 09:54:01 +00:00
committed by konrad
parent 92f24e59a7
commit 602ab8379e
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export function useList(listId: MaybeRef<ListModel['id']>) {
const listService = shallowReactive(new ListService())
const {loading: isLoading} = toRefs(listService)
const list : ListModel = reactive(new ListModel({}))
const {t} = useI18n()
const {t} = useI18n({useScope: 'global'})
watch(
() => unref(listId),