refactor(admin) : sélecteur de catégorie workflow en MalioSelect

MalioSelect supporte value: string | number | null (vérifié dans la
source @malio/layer-ui). Migration du <select> natif de WorkflowDrawer
vers MalioSelect + correction de la note obsolète dans CLAUDE.md.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-05-21 09:10:03 +02:00
parent e33322e793
commit 276abf5ccf
2 changed files with 7 additions and 9 deletions

View File

@@ -46,15 +46,13 @@
label="Libellé"
input-class="w-full"
/>
<select
<MalioSelect
v-model="s.category"
class="h-10 rounded border border-neutral-300 px-2 text-sm"
aria-label="Catégorie"
>
<option v-for="c in categoryOptions" :key="c.value" :value="c.value">
{{ c.label }}
</option>
</select>
:options="categoryOptions"
label="Catégorie"
min-width="w-44"
group-class="shrink-0"
/>
<button
type="button"
class="h-10 px-2 text-red-600 hover:text-red-800"