Skip to content

Commit 6bb41da

Browse files
chore: Update tooltip text for column visibility in 2pan and top-right components
1 parent 4d73052 commit 6bb41da

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

src/components/2pan/index.vue

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ q-splitter(
4646
q-btn.desktop-only(flat :icon="isSimple ? 'mdi-table-border' : 'mdi-table-merge-cells'" color="primary" @click="simple = !simple")
4747
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Mode simple/double panneaux
4848
q-btn(flat icon="mdi-table-headers-eye" color="primary")
49-
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher/cacher des colones
49+
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher/cacher des colonnes
5050
q-menu(max-width="350px" max-height="350px").q-pa-md
5151
.row
5252
.col-6(v-for="column in columns" :key="column.value")
@@ -152,7 +152,7 @@ const props = defineProps({
152152
},
153153
refresh: {
154154
type: Function,
155-
default: () => { },
155+
default: () => {},
156156
},
157157
total: {
158158
type: Number,
@@ -207,8 +207,8 @@ const props = defineProps({
207207
return row
208208
},
209209
210-
cancel: async () => { },
211-
onMounted: async () => { },
210+
cancel: async () => {},
211+
onMounted: async () => {},
212212
},
213213
},
214214
})
@@ -239,7 +239,6 @@ const cols = computed(() => {
239239
...c,
240240
classes: (row) => highlightRow(row[props.rowKey]),
241241
}
242-
243242
})
244243
})
245244

src/components/table/top-left.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<template lang="pug">
22
q-btn-group(rounded flat)
33
q-btn(flat icon="mdi-eye" color="primary" rounded @click="goToIdentity(selected[0])" size="md" :disable="selected.length === 0 || selected.length !== 1")
4-
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher les identitées sélectionnés
4+
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher les identités sélectionnées
55
q-btn(flat icon="mdi-merge" color="primary" rounded @click="merge" size="md" :disable="true ||selected.length === 0 || selected.length === 1")
6-
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Fusionner les identitées sélectionnés
6+
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Fusionner les identités sélectionnées
77
q-btn(flat icon="mdi-lock" color="primary" rounded @click="updateLifestep(LifeStep.CLOSED)" size="md" :disable="selected.length === 0")
8-
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Mettre a syncroniser les identitées sélectionnés
8+
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Mettre à synchroniser les identités sélectionnées
99
q-btn(flat icon="mdi-close" color="primary" rounded @click="clearSelection" size="md")
1010
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Nettoyer la selection
1111
</template>

src/components/table/top-right.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template lang="pug">
22
q-btn-group(rounded flat)
33
q-btn(flat icon="mdi-table-headers-eye" color="primary")
4-
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher/cacher des colones
4+
q-tooltip.text-body2(transition-show="scale" transition-hide="scale") Afficher/cacher des colonnes
55
q-menu(max-width="350px" max-height="350px").q-pa-md
66
.row
77
.col-6(v-for="column in columns" :key="column.value")

src/pages/identities/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ div
3535
:pending="pending"
3636
:refresh="refreshEvent"
3737
:error="error"
38-
:titleKey=["inetOrgPerson.cn", "inetOrgPerson.givenName"]
38+
:titleKey=["inetOrgPerson.cn"]
3939
:crud="crud"
4040
:actions="actions"
4141
:defaultRightPanelButton="false"

0 commit comments

Comments
 (0)