feat: fix of Warning: Encountered two children with the same key.

pull/10/head
KevICO 5 years ago
parent 073a4bb7ab
commit 9fb0da306c
  1. 3
      public/locales/fr/common.json
  2. 4
      src/DashboardTab.js

@ -58,7 +58,8 @@
"Activate account": "Activer le compte",
"Number of rooms": "Nombre de salons",
"Number of personnals conversations": "Nombre de conversations privées",
"Of which active": "Dont actif",
"Of which active rooms": "Dont salons actifs",
"Of which active personnals conversations": "Dont conversations privées actives",
"errorBoundary": {
"title": "Quelque chose s’est mal passé !",

@ -33,7 +33,7 @@ export default withTranslation()(({ t }) => {
data: data.rooms.non_direct_rooms_count,
},
{
label: t("Of which active"),
label: t("Of which active rooms"),
data: data.rooms.non_direct_active_rooms_count,
},
{
@ -41,7 +41,7 @@ export default withTranslation()(({ t }) => {
data: data.rooms.direct_rooms_count,
},
{
label: t("Of which active"),
label: t("Of which active personnals conversations"),
data: data.rooms.direct_active_rooms_count,
},

Loading…
Cancel
Save