From cea147fad18e24a54b5bf10107c97dd9733c7219 Mon Sep 17 00:00:00 2001 From: Ironankit525 Date: Fri, 23 Jan 2026 11:24:09 +0530 Subject: [PATCH 1/2] refactor(client): remove unnecessary aria-label in MultiSelectSettingInput --- .../admin/settings/Setting/inputs/MultiSelectSettingInput.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/meteor/client/views/admin/settings/Setting/inputs/MultiSelectSettingInput.tsx b/apps/meteor/client/views/admin/settings/Setting/inputs/MultiSelectSettingInput.tsx index 8b32553027ea4..371f33c984783 100644 --- a/apps/meteor/client/views/admin/settings/Setting/inputs/MultiSelectSettingInput.tsx +++ b/apps/meteor/client/views/admin/settings/Setting/inputs/MultiSelectSettingInput.tsx @@ -52,7 +52,6 @@ function MultiSelectSettingInput({ // autoComplete={autocomplete === false ? 'off' : undefined} onChange={handleChange} options={values.map(({ key, i18nLabel }) => [key, t(i18nLabel)])} - aria-label={_id} // FIXME: Multiselect (fuselage) should be associating the FieldLabel automatically. This is a workaround for accessibility and test locators. /> {hint && {hint}} From 50534a109568b9688eb4ff9cb9692c89db84079b Mon Sep 17 00:00:00 2001 From: Ironankit525 Date: Fri, 23 Jan 2026 11:24:28 +0530 Subject: [PATCH 2/2] chore: add changeset --- .changeset/clever-cats-sing.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/clever-cats-sing.md diff --git a/.changeset/clever-cats-sing.md b/.changeset/clever-cats-sing.md new file mode 100644 index 0000000000000..682196a75d316 --- /dev/null +++ b/.changeset/clever-cats-sing.md @@ -0,0 +1,5 @@ +--- +"@rocket.chat/meteor": patch +--- + +refactor(client): remove unnecessary aria-label in MultiSelectSettingInput