make showErweitert configurable

This commit is contained in:
ma0068
2026-07-07 16:43:01 +02:00
parent 044e29f557
commit 81f0b7a4bf
2 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -60,7 +60,8 @@ $config['tabs'] =
],
'notes' => [
//if true, the count of Messages will be shown in the header of the Tab Messages
'showCountNotes' => true
'showCountNotes' => true,
'showErweitert' => true,
],
'combinePeople' => [
//multitab should only be shown with this length of selection
@@ -8,7 +8,11 @@ export default {
CoreNotiz
},
props: {
modelValue: Object
modelValue: Object,
config: {
type: Object,
default: {}
}
},
data() {
return {
@@ -31,6 +35,7 @@ export default {
:visibleColumns="['titel','text','verfasser','bearbeiter','dokumente']"
@reload="$emit('update:suffix')"
tabulator-persistence-id="stv-notiz-20260217"
:show-erweitert="config.showErweitert"
>
</core-notiz>