Add support for JSON type in getIconForRedisType function

This commit is contained in:
Stela Augustinova
2025-12-10 15:44:48 +01:00
parent 4d1167a6d6
commit 51d8fa7268

View File

@@ -504,6 +504,7 @@ export function getIconForRedisType(type) {
case 'binary': case 'binary':
return 'img type-binary'; return 'img type-binary';
case 'ReJSON-RL': case 'ReJSON-RL':
case 'JSON':
return 'img type-rejson'; return 'img type-rejson';
default: default:
return null; return null;