Add Euro Symbol as Billable Icon when EUR is the organization currency.

fixes #423
This commit is contained in:
Gregor Vostrak
2026-02-10 12:47:27 +01:00
parent 15e61e9789
commit 562ee234a8
18 changed files with 94 additions and 46 deletions

View File

@@ -76,6 +76,17 @@ watch(
}
);
// Re-run filter when items are dynamically added/removed (e.g. entity search results)
watch(
allItems,
() => {
if (filterState.search) {
filterItems();
}
},
{ deep: true }
);
// Sync external searchTerm prop changes to internal state
watch(
() => props.searchTerm,