fix(frontend) : align time-tracking filters with view mode toggle

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 08:34:07 +01:00
parent 445f51b473
commit 25b648a1b1

View File

@@ -13,11 +13,11 @@
</div> </div>
<div class="relative z-30 mt-4 flex flex-wrap items-center gap-3 sm:gap-4"> <div class="relative z-30 mt-4 flex flex-wrap items-center gap-3 sm:gap-4">
<h2 class="text-lg font-bold text-orange-500"> <h2 class="shrink-0 whitespace-nowrap text-lg font-bold text-orange-500">
{{ currentMonthLabel }} {{ currentMonthLabel }}
</h2> </h2>
<div class="flex items-center gap-1 rounded-md border border-neutral-200"> <div class="flex shrink-0 items-center gap-1 rounded-md border border-neutral-200">
<button class="px-2 py-1 text-neutral-500 hover:text-neutral-700" @click="navigatePrev"> <button class="px-2 py-1 text-neutral-500 hover:text-neutral-700" @click="navigatePrev">
<Icon name="mdi:chevron-left" size="20" /> <Icon name="mdi:chevron-left" size="20" />
</button> </button>
@@ -35,6 +35,7 @@
</button> </button>
</div> </div>
<div class="[&>div]:!mt-0">
<MalioSelect <MalioSelect
v-model="selectedUserId" v-model="selectedUserId"
:options="userOptions" :options="userOptions"
@@ -44,7 +45,9 @@
label="User" label="User"
empty-option-label="User" empty-option-label="User"
/> />
</div>
<div class="[&>div]:!mt-0">
<MalioSelect <MalioSelect
v-model="selectedProjectId" v-model="selectedProjectId"
:options="projectOptions" :options="projectOptions"
@@ -54,7 +57,9 @@
text-field="text-sm" text-field="text-sm"
text-value="text-sm" text-value="text-sm"
/> />
</div>
<div class="[&>div]:!mt-0">
<MalioSelect <MalioSelect
v-model="selectedTagId" v-model="selectedTagId"
:options="tagOptions" :options="tagOptions"
@@ -66,6 +71,7 @@
/> />
</div> </div>
</div> </div>
</div>
<div class="mt-4 -mb-24 min-h-0 flex-1"> <div class="mt-4 -mb-24 min-h-0 flex-1">
<TimeEntryList <TimeEntryList