redis key selection by keyboard

This commit is contained in:
SPRINX0\prochazka
2025-01-22 17:44:46 +01:00
parent 4ea718b662
commit 79a246217a
4 changed files with 58 additions and 6 deletions

View File

@@ -7,6 +7,7 @@
export const allowAddToFavorites = props => false;
function getKeyText(key) {
if (!key) return '(no name)';
const keySplit = key.split(':');
if (keySplit.length > 1) return keySplit[keySplit.length - 1];
return key || '(no name)';