We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4bdac commit f59e5bcCopy full SHA for f59e5bc
internal-ui/src/federated-saml/FederatedSAMLApps.tsx
@@ -100,10 +100,16 @@ export const FederatedSAMLApps = ({
100
id: app.id,
101
cells: columns.map((column) => {
102
const dataIndex = column.dataIndex as keyof typeof app;
103
+ let columnText: string | undefined = app[dataIndex] as string;
104
+ if (column.key === 'type') {
105
+ if (!columnText) {
106
+ columnText = 'SAML';
107
+ }
108
+ columnText = columnText?.toUpperCase();
109
110
return {
111
wrap: column.wrap,
- text:
- column.key === 'type' ? (app[dataIndex] as string)?.toUpperCase() : (app[dataIndex] as string),
112
+ text: columnText,
113
};
114
}),
115
0 commit comments