diff --git a/changes/50687-show-user-icon-on-ios-ipados b/changes/50687-show-user-icon-on-ios-ipados new file mode 100644 index 0000000000..3f2b1c27fa --- /dev/null +++ b/changes/50687-show-user-icon-on-ios-ipados @@ -0,0 +1 @@ +- Fixed an issue where the user-scoped icon wasn't showing for iOS and iPadOS hosts. \ No newline at end of file diff --git a/frontend/pages/hosts/details/OSSettingsModal/OSSettingsTable/OSSettingsTableConfig.tsx b/frontend/pages/hosts/details/OSSettingsModal/OSSettingsTable/OSSettingsTableConfig.tsx index 6ff6b3af03..8867b6f6a3 100644 --- a/frontend/pages/hosts/details/OSSettingsModal/OSSettingsTable/OSSettingsTableConfig.tsx +++ b/frontend/pages/hosts/details/OSSettingsModal/OSSettingsTable/OSSettingsTableConfig.tsx @@ -64,16 +64,10 @@ const generateTableConfig = ( disableSortBy: true, accessor: "name", Cell: (cellProps: ITableStringCellProps) => { - let scope = cellProps.row.original.scope; - - if (isIPadOrIPhone(cellProps.row.original.platform)) { - scope = null; // Don't show user-scoped icon for iOS/iPadOS profiles, since we don't support user channels. - } - return ( );