chore: remove global mixing

This commit is contained in:
Dominik Pschenitschni 2022-06-23 03:23:39 +02:00
parent b0ee316a26
commit 4a247b2a7d
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
13 changed files with 30 additions and 25 deletions

View file

@ -119,6 +119,7 @@ import {LOADING, LOADING_MODULE} from '@/store/mutation-types'
import BaseButton from '@/components/base/BaseButton.vue'
import AsyncEditor from '@/components/input/AsyncEditor'
import ColorPicker from '@/components/input/colorPicker.vue'
import { setTitle } from '@/helpers/setTitle'
export default defineComponent({
name: 'ListLabels',
@ -140,7 +141,7 @@ export default defineComponent({
this.$store.dispatch('labels/loadAllLabels')
},
mounted() {
this.setTitle(this.$t('label.title'))
setTitle(this.$t('label.title'))
},
computed: mapState({
userInfo: state => state.auth.info,