Skip to content

Commit 61303e7

Browse files
committed
frontend: Fix error message in KubeNodeDetails
Signed-off-by: Oleksandr Dubenko <oldubenko@microsoft.com>
1 parent 77a4c97 commit 61303e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/resourceMap/details/KubeNodeDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const KubeObjectDetails = memo(({ resource }: { resource: KubeObject }) =
9090
useEffect(() => {
9191
if (!kindComponentMap[kind]) {
9292
console.error(
93-
'No details component for kind ${kind} was found. See KubeNodeDetails.tsx for more info'
93+
`No details component for kind ${kind} was found. See KubeNodeDetails.tsx for more info`
9494
);
9595
}
9696
}, [kindComponentMap, kind]);

0 commit comments

Comments
 (0)