Redis Format Json #582

This commit is contained in:
SPRINX0\prochazka
2025-01-21 18:36:25 +01:00
parent 7a2390c025
commit 0c35aefbe2
4 changed files with 45 additions and 23 deletions

View File

@@ -135,7 +135,7 @@
<AppObjectCore
icon={getIconForRedisType(item.type)}
title={item.text}
title={item.text || '(no name)'}
expandIcon={item.type == 'dir' ? plusExpandIcon(isExpanded) : 'icon invisible-box'}
on:expand={() => {
if (item.type == 'dir') {
@@ -148,7 +148,7 @@
} else {
openNewTab({
tabComponent: 'DbKeyDetailTab',
title: item.text,
title: item.text || '(no name)',
icon: 'img keydb',
props: {
isDefaultBrowser: true,