fix : replace MalioButton with styled native button in export drawer

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 21:54:55 +01:00
parent fdc9b8b60d
commit 7f1c02256b

View File

@@ -100,13 +100,13 @@
</div> </div>
<!-- Export button --> <!-- Export button -->
<MalioButton <button
:label="$t('timeEntries.export')" class="flex w-full items-center justify-center gap-2 rounded-md bg-primary-500 px-4 py-3 text-sm font-semibold text-white hover:bg-primary-600 transition"
icon-name="mdi:download"
icon-position="left"
button-class="w-full"
@click="doExport" @click="doExport"
/> >
<Icon name="mdi:download" size="18" />
{{ $t('timeEntries.export') }}
</button>
</div> </div>
</MalioDrawer> </MalioDrawer>
</template> </template>