fix(ui): add tooltips on solo icons in tables#56
Merged
Conversation
Status pictos in DelegateListView (admin/write columns) had a tooltip only on the granted (green) state; the not-granted (grey) state had an empty title, making it unreadable without context. Wraps each solo dot in a v-tooltip carrying the matching i18n label for all four states, aligning with the activator="parent" pattern already used elsewhere. Other plugin-id tables were audited and already expose tooltips on their solo status icons. Closes #54.
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Adds hover tooltips to the solo status pictos in
DelegateListView(Administration / Écriture columns). Previously only the granted (green) state carried a nativetitle; the not-granted (grey) state had an empty title and no tooltip — the symptom reported in #54.Changes
DelegateListView.vue: both status dots now use<v-tooltip activator="parent" location="top">with a conditional label, so all four states (admin/write × granted/not) have a tooltip. Removes the native:titlein favour of theactivator="parent"pattern already used inGroupMembersPanel/DelegateEditDialog.delegate.adminNotGranted/delegate.writeNotGranted(fr + en); existing*Grantedkeys reused.Scope
Audited the other plugin-id tables (
UserListView,GroupListView,CompanyListView,ContainerScopeView): their solo status icons already expose tooltips (locked state via<v-tooltip>, dash otherwise) — no change needed.Verification
npm run build✅,vitest14/14 ✅/id/delegate: dots render (green = granted, grey = not), tooltips correct on all four states including the grey non accordée case.Closes #54.