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 fd012e7c69
commit 215957104f
18 changed files with 94 additions and 46 deletions

View File

@@ -20,10 +20,10 @@ import {
SunIcon,
MoonIcon,
ComputerDesktopIcon,
CurrencyDollarIcon,
ClipboardDocumentListIcon,
BuildingOfficeIcon,
} from '@heroicons/vue/20/solid';
import BillableIcon from '@/packages/ui/src/Icons/BillableIcon.vue';
import type { Organization } from '@/types/models';
export type CommandGroup =
@@ -340,7 +340,7 @@ export function createActiveTimerCommands(
{
id: 'timer-toggle-billable',
label: 'Toggle Billable',
icon: CurrencyDollarIcon,
icon: BillableIcon,
keywords: ['billable', 'non-billable', 'money'],
group: 'active-timer',
action: activeTimerActions.toggleBillable,