fix(frontend) : ERP-26/27 - review fixes: shared types, accents i18n, escape key, self-edit refresh, row-clickable guard

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-04-16 10:45:21 +02:00
parent 580ea01941
commit d49c317c49
9 changed files with 70 additions and 103 deletions

View File

@@ -48,13 +48,7 @@
</template>
<script setup lang="ts">
interface UserListItem {
id: number
username: string
isAdmin: boolean
roles: string[]
directPermissions: string[]
}
import type { UserListItem } from '~/shared/types/rbac'
const { t } = useI18n()
const api = useApi()