7336_devToTest #354

Merged
alexm merged 359 commits from 7336_devToTest into test 2024-05-07 06:34:00 +00:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit e1f50f5daf - Show all commits

View File

@ -1234,7 +1234,7 @@ itemType:
life: Vida life: Vida
promo: Promoción promo: Promoción
itemPackingType: Tipo de embalaje itemPackingType: Tipo de embalaje
isUnconventionalSize: Es de tamaño no convencional isUnconventionalSize: Es de tamaño poco convencional
components: components:
topbar: {} topbar: {}
itemsFilterPanel: itemsFilterPanel:

View File

@ -93,6 +93,7 @@ async function setItemTypeData(data) {
:value="itemType.itemPackingType?.description" :value="itemType.itemPackingType?.description"
/> />
<VnLv <VnLv
class="large-label"
:label="t('itemType.summary.isUnconventionalSize')" :label="t('itemType.summary.isUnconventionalSize')"
:value="itemType.isUnconventionalSize" :value="itemType.isUnconventionalSize"
/> />
@ -100,3 +101,9 @@ async function setItemTypeData(data) {
</template> </template>
</CardSummary> </CardSummary>
</template> </template>
<style lang="scss">
.large-label > div.label {
width: 15em !important;
}
</style>