HOTFIX: #6943 CustomerDescriptor actions #943

Merged
jsegarra merged 7 commits from hotfix-customerDescriptor_actions into master 2024-11-15 11:04:35 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit c465c9b2c7 - Show all commits

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>