diff --git a/redisinsight/ui/src/pages/browser/modules/key-details/components/hash-details/hash-details-table/HashDetailsTable.tsx b/redisinsight/ui/src/pages/browser/modules/key-details/components/hash-details/hash-details-table/HashDetailsTable.tsx index 04bbc625b3..a3425fe553 100644 --- a/redisinsight/ui/src/pages/browser/modules/key-details/components/hash-details/hash-details-table/HashDetailsTable.tsx +++ b/redisinsight/ui/src/pages/browser/modules/key-details/components/hash-details/hash-details-table/HashDetailsTable.tsx @@ -529,7 +529,7 @@ const HashDetailsTable = (props: Props) => { handleDeleteItem={handleDeleteField} handleButtonClick={handleRemoveIconClick} appendInfo={ - length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT : null + length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT() : null } /> diff --git a/redisinsight/ui/src/pages/browser/modules/key-details/components/set-details/set-details-table/SetDetailsTable.tsx b/redisinsight/ui/src/pages/browser/modules/key-details/components/set-details/set-details-table/SetDetailsTable.tsx index 76b93da848..ab1a4e87a2 100644 --- a/redisinsight/ui/src/pages/browser/modules/key-details/components/set-details/set-details-table/SetDetailsTable.tsx +++ b/redisinsight/ui/src/pages/browser/modules/key-details/components/set-details/set-details-table/SetDetailsTable.tsx @@ -291,7 +291,7 @@ const SetDetailsTable = (props: Props) => { handleButtonClick={handleRemoveIconClick} testid={`set-remove-btn-${member}`} appendInfo={ - length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT : null + length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT() : null } /> diff --git a/redisinsight/ui/src/pages/browser/modules/key-details/components/zset-details/zset-details-table/ZSetDetailsTable.tsx b/redisinsight/ui/src/pages/browser/modules/key-details/components/zset-details/zset-details-table/ZSetDetailsTable.tsx index 1819bdea8f..87ccdd4f4c 100644 --- a/redisinsight/ui/src/pages/browser/modules/key-details/components/zset-details/zset-details-table/ZSetDetailsTable.tsx +++ b/redisinsight/ui/src/pages/browser/modules/key-details/components/zset-details/zset-details-table/ZSetDetailsTable.tsx @@ -442,7 +442,7 @@ const ZSetDetailsTable = (props: Props) => { handleButtonClick={handleRemoveIconClick} testid={`zset-remove-button-${name}`} appendInfo={ - length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT : null + length === 1 ? HelpTexts.REMOVE_LAST_ELEMENT() : null } />