Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Props {
text: JSX.Element | string
item: string
itemRaw?: RedisString
suffix: string
suffix?: string
deleting: string
closePopover: () => void
showPopover: (item: string) => void
Expand All @@ -26,7 +26,7 @@ const PopoverDelete = (props: Props) => {
text,
item,
itemRaw,
suffix,
suffix = '',
deleting,
closePopover,
updateLoading,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const KeyDetailsHeader = ({
const dispatch = useDispatch()

const handleRefreshKey = () => {
dispatch(refreshKey(keyBuffer!, type))
dispatch(refreshKey(keyBuffer!, type, undefined, length))
}

const handleEditTTL = (key: RedisResponseBuffer, ttl: number) => {
Expand Down

This file was deleted.

Loading