Merge branch 'master' into word-break-in-contribution

This commit is contained in:
Alexander Friedland 2023-01-19 16:06:21 +01:00 committed by GitHub
commit 8ef9b240e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -88,7 +88,7 @@ export default {
return `${value} GDD` return `${value} GDD`
}, },
}, },
{ key: 'memo', label: this.$t('transactionlist.memo') }, { key: 'memo', label: this.$t('transactionlist.memo'), class: 'text-break' },
], ],
} }
}, },

View File

@ -57,7 +57,7 @@ const propsData = {
return value + ' GDD' return value + ' GDD'
}, },
}, },
{ key: 'memo', label: 'text' }, { key: 'memo', label: 'text', class: 'text-break' },
{ {
key: 'date', key: 'date',
label: 'date', label: 'date',

View File

@ -67,7 +67,7 @@ export default {
return `${value} GDD` return `${value} GDD`
}, },
}, },
{ key: 'memo', label: this.$t('transactionlist.memo') }, { key: 'memo', label: this.$t('transactionlist.memo'), class: 'text-break' },
{ {
key: 'validUntil', key: 'validUntil',
label: this.$t('transactionlink.valid_until'), label: this.$t('transactionlink.valid_until'),

View File

@ -99,7 +99,7 @@ export default {
return value + ' GDD' return value + ' GDD'
}, },
}, },
{ key: 'memo', label: this.$t('text') }, { key: 'memo', label: this.$t('text'), class: 'text-break' },
{ {
key: 'date', key: 'date',
label: this.$t('date'), label: this.$t('date'),

View File

@ -70,6 +70,6 @@ console.warn = (m) => {
} }
// throw errors for vue warnings to force the programmers to take care about warnings // throw errors for vue warnings to force the programmers to take care about warnings
Vue.config.warnHandler = (w) => { Vue.config.warnHandler = async (w) => {
throw new Error(w) throw new Error(w)
} }