mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-15 03:32:15 +01:00
Add Euro Symbol as Billable Icon when EUR is the organization currency.
fixes #423
This commit is contained in:
@@ -201,7 +201,7 @@ const firstProjectId = computed(() => projects.value[0]?.id ?? '');
|
||||
<TimeTrackerProjectTaskDropdown
|
||||
v-model:project="currentTimeEntry.project_id"
|
||||
v-model:task="currentTimeEntry.task_id"
|
||||
variant="input"
|
||||
variant="outline"
|
||||
:projects="projects"
|
||||
:tasks="tasks"
|
||||
:clients="activeClients"
|
||||
@@ -225,7 +225,7 @@ const firstProjectId = computed(() => projects.value[0]?.id ?? '');
|
||||
<TimeTrackerProjectTaskDropdown
|
||||
v-model:project="currentTimeEntry.project_id"
|
||||
v-model:task="currentTimeEntry.task_id"
|
||||
variant="input"
|
||||
variant="outline"
|
||||
:projects="projects"
|
||||
:tasks="tasks"
|
||||
:clients="activeClients"
|
||||
|
||||
@@ -103,7 +103,7 @@ async function createTag(name: string) {
|
||||
|
||||
<Select v-model="billable" @update:model-value="emit('submit')">
|
||||
<SelectTrigger
|
||||
size="small"
|
||||
size="sm"
|
||||
variant="outline"
|
||||
:active="billable !== null"
|
||||
:show-chevron="false">
|
||||
|
||||
@@ -25,7 +25,7 @@ const title = computed(() => {
|
||||
|
||||
<template>
|
||||
<Select v-model="model" @update:model-value="emit('changed')">
|
||||
<SelectTrigger size="small" :show-chevron="false">
|
||||
<SelectTrigger size="sm" :show-chevron="false">
|
||||
<SelectValue class="flex items-center gap-2">
|
||||
<component :is="icon" class="h-4 text-icon-default" />
|
||||
<span>{{ title }}</span>
|
||||
|
||||
Reference in New Issue
Block a user