add builder i18n

This commit is contained in:
Pete Matsyburka
2024-01-04 01:05:36 +02:00
parent 6f1e104067
commit 2124965996
12 changed files with 146 additions and 68 deletions
+7 -2
View File
@@ -120,7 +120,7 @@
</template>
</div>
<div
v-if="fields.length < 4 && editable"
v-if="fields.length < 4 && editable && withHelp"
class="text-xs p-2 border border-base-200 rounded"
>
<ul class="list-disc list-outside ml-3">
@@ -154,12 +154,17 @@ export default {
IconDrag,
IconLock
},
inject: ['save', 'backgroundColor', 'withPhone', 'withPayment'],
inject: ['save', 'backgroundColor', 'withPhone', 'withPayment', 't'],
props: {
fields: {
type: Array,
required: true
},
withHelp: {
type: Boolean,
required: false,
default: true
},
editable: {
type: Boolean,
required: false,