Skip to content
Snippets Groups Projects

fix: prevent crash when selecting nodes

Merged Dennis Collaris requested to merge fix/selection-crash into main
@@ -38,7 +38,7 @@ export const SelectionConfig = () => {
if (key === 'labels' || key === '_id') return null;
return (
<div key={index + key} className="flex justify-between items-center px-4 py-1 gap-1">
<span className="text-xs font-normal break-all max-w-[6rem]">{key}</span>
<span className="text-xs font-normal break-all max-w-[6rem]">{String(key)}</span>
<span className="text-xs break-all">{value as string}</span>
</div>
);
Loading