Skip to content

Commit 622b0d1

Browse files
authored
🐛 Fix platform kind filtering to use display labels (#2605)
Resolves: #2603 Resolves: https://issues.redhat.com/browse/MTA-6118 ## Summary by CodeRabbit - New Features - Guided wizard to discover and import applications. - Platform detail side drawer for quick inspection. - Confirm deletion safety dialog. - Improvements - Table settings persist between sessions; simple pagination added. - More user-friendly platform-kind filter labels. - Refreshed platform name display, updated icons and empty-state visual. - Edit action retained; continued links to platform applications. Signed-off-by: Maayan Hadasi <[email protected]>
1 parent 6a30106 commit 622b0d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/app/pages/source-platforms/source-platforms.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const SourcePlatforms: React.FC = () => {
146146
what: t("terms.platformKind").toLowerCase(),
147147
}) + "...",
148148
getItemValue: (platform) => {
149-
return platform?.kind ?? "";
149+
return getDisplayLabel(platform?.kind) ?? "";
150150
},
151151
},
152152
],

0 commit comments

Comments
 (0)