fix: minorchanges
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-04-24 15:05:10 +02:00
parent dcb06918dd
commit e1f50f5daf
2 changed files with 8 additions and 1 deletions

View File

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

View File

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