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

@@ -14,7 +14,7 @@ import type {
import { PlusIcon, PlusCircleIcon, MinusIcon, XMarkIcon } from '@heroicons/vue/16/solid';
import ProjectCreateModal from '@/packages/ui/src/Project/ProjectCreateModal.vue';
import { twMerge } from 'tailwind-merge';
import { Button } from '@/Components/ui/button';
import { Button } from '@/packages/ui/src/Buttons';
const task = defineModel<string | null>('task', {
default: null,
@@ -61,7 +61,7 @@ const props = withDefaults(
class?: string;
variant?: 'input' | 'ghost' | 'outline';
align?: 'center' | 'end' | 'start';
size?: 'default' | 'xs' | 'sm' | 'lg' | 'icon' | 'input';
size?: 'default' | 'xs' | 'sm' | 'lg' | 'icon';
}>(),
{
emptyPlaceholder: 'No Project',