Skip to content

Commit

Permalink
Merge pull request #225 from RedisInsight/feature/bugfix
Browse files Browse the repository at this point in the history
#RIVS-313, #RIVS-314
  • Loading branch information
vlad-dargel authored Dec 16, 2024
2 parents 73460be + 9aea8d8 commit b86d53f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const KeysSummary = (props: Props) => {
if (!isMultiDbIndex) return null
return (
<>
<VscDatabase />
<VscDatabase className="sidebar-icon" />
<span className="px-1">{dbIndex}</span>
</>
)
Expand All @@ -108,7 +108,7 @@ export const KeysSummary = (props: Props) => {
}

return (
<span>
<span className="truncate">
{'('}
<span data-testid="keys-number-of-results">{numberWithSpaces(resultsLength)}</span>
{' / '}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
}

.content {
@apply flex flex-row items-center flex-grow text-vscode-foreground opacity-80 pl-1;
@apply flex flex-row items-center flex-grow text-vscode-foreground opacity-80 pl-1 truncate;
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const KeysTreeHeader = ({ database, open, dbTotal, children }: Props) =>
showTree={showTree}
toggleShowTree={handleToggleShowTree}
/>
{isShowScanMore(scanned, total, nextCursor) && (
{isShowScanMore(scanned, total, nextCursor) && showTree && (
<ScanMore
loading={loading}
disabled={isDisableScanMore(scanned, total, nextCursor)}
Expand Down

0 comments on commit b86d53f

Please sign in to comment.