diff --git a/libs/i18n/locales/en/translation.json b/libs/i18n/locales/en/translation.json index 7f29fbdb8..818c6f224 100644 --- a/libs/i18n/locales/en/translation.json +++ b/libs/i18n/locales/en/translation.json @@ -156,7 +156,7 @@ "Desired system image: {{ desiredOsImage }}": "Desired system image: {{ desiredOsImage }}", "Connection was closed": "Connection was closed", "Reconnect": "Reconnect", - "Show only decommissioned devices": "Show only decommissioned devices", + "Show decommissioned devices": "Show decommissioned devices", "Devices table": "Devices table", "Device already started decommissioning and cannot be edited.": "Device already started decommissioning and cannot be edited.", "View device details": "View device details", diff --git a/libs/ui-components/src/components/Device/DevicesPage/DecommissionedDevicesTable.tsx b/libs/ui-components/src/components/Device/DevicesPage/DecommissionedDevicesTable.tsx index 76c23d030..2b661e814 100644 --- a/libs/ui-components/src/components/Device/DevicesPage/DecommissionedDevicesTable.tsx +++ b/libs/ui-components/src/components/Device/DevicesPage/DecommissionedDevicesTable.tsx @@ -100,12 +100,12 @@ const DecommissionedDevicesTable = ({ {t('Show only decommissioned devices')}} + label={{t('Show decommissioned devices')}} isChecked onChange={() => { setOnlyDecommissioned(false); }} - ouiaId={t('Show only decommissioned devices')} + ouiaId={t('Show decommissioned devices')} /> diff --git a/libs/ui-components/src/components/Device/DevicesPage/EnrolledDevicesTable.tsx b/libs/ui-components/src/components/Device/DevicesPage/EnrolledDevicesTable.tsx index e073b7df2..89dd47810 100644 --- a/libs/ui-components/src/components/Device/DevicesPage/EnrolledDevicesTable.tsx +++ b/libs/ui-components/src/components/Device/DevicesPage/EnrolledDevicesTable.tsx @@ -155,13 +155,13 @@ const EnrolledDevicesTable = ({ {t('Show only decommissioned devices')}} + label={{t('Show decommissioned devices')}} isChecked={false} onChange={() => { clearAllFilters(); setOnlyDecommissioned(true); }} - ouiaId={t('Show only decommissioned devices')} + ouiaId={t('Show decommissioned devices')} />