solveConflicts_test_to_dev #957

Merged
alexm merged 58 commits from solveConflicts_test_to_dev into dev 2024-11-18 10:21:51 +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>