3
0

Adjust min-width of script column in code snippets

This commit is contained in:
Jože Fortun 2024-09-26 15:16:37 +02:00
parent af477b6dea
commit dd5ec6b0d7

View File

@ -197,7 +197,7 @@ export default {
return [
{ key: 'name', label: this.$t('code-snippets.table-headers.name') },
{ key: 'enabled', label: this.$t('code-snippets.table-headers.enabled'), thClass: 'text-center', tdClass: 'text-center' },
{ key: 'script', label: this.$t('code-snippets.table-headers.script'), tdClass: 'text-break' },
{ key: 'script', label: this.$t('code-snippets.table-headers.script'), tdClass: 'text-break', thStyle: 'min-width: 25rem;' },
{ key: 'actions', label: '', thStyle: { 'min-width': '7rem' }, tdClass: 'text-right' },
]
},