Merge branch 'master' into hotfix-customerDescriptor_actions
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Javier Segarra 2024-11-15 11:41:28 +01:00
commit c465c9b2c7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ const entityId = computed(() => {
const data = ref(useCardDescription());
const setData = (entity) => (data.value = useCardDescription(entity?.name, entity?.id));
const debtWarning = computed(() => {
return customer.value?.debt > customer.value.credit ? 'negative' : 'primary';
return customer.value?.debt > customer.value?.credit ? 'negative' : 'primary';
});
</script>