Compare commits
No commits in common. "f3a43c808330d0a0118ddbc9f10775fe3445052f" and "5a86bab647e7ba1a9d56faf553cb35f1d798667d" have entirely different histories.
f3a43c8083
...
5a86bab647
|
@ -206,7 +206,7 @@ const onTermKey = (e) => {
|
||||||
return false
|
return false
|
||||||
|
|
||||||
case 'e': // move to tail of line
|
case 'e': // move to tail of line
|
||||||
moveInputCursorTo(Number.MAX_SAFE_INTEGER)
|
moveInputCursorTo(Number.MAX_VALUE)
|
||||||
return false
|
return false
|
||||||
|
|
||||||
case 'f': // move forward
|
case 'f': // move forward
|
||||||
|
@ -251,8 +251,6 @@ const onTermKey = (e) => {
|
||||||
newInputLine()
|
newInputLine()
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
// block all ctrl key combinations input
|
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
@ -292,7 +290,7 @@ const moveInputCursor = (step) => {
|
||||||
* move cursor to the end of current line
|
* move cursor to the end of current line
|
||||||
*/
|
*/
|
||||||
const moveInputCursorToEnd = () => {
|
const moveInputCursorToEnd = () => {
|
||||||
moveInputCursorTo(Number.MAX_SAFE_INTEGER)
|
moveInputCursorTo(Number.MAX_VALUE)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -155,7 +155,7 @@ const onTTL = () => {
|
||||||
server: props.server,
|
server: props.server,
|
||||||
db: props.db,
|
db: props.db,
|
||||||
key: binaryKey.value ? props.keyCode : props.keyPath,
|
key: binaryKey.value ? props.keyCode : props.keyPath,
|
||||||
ttl: ttl.value,
|
ttl: props.ttl,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { i18nGlobal } from '@/utils/i18n.js'
|
||||||
*/
|
*/
|
||||||
export const toHumanReadable = (duration) => {
|
export const toHumanReadable = (duration) => {
|
||||||
const dur = dayjs.duration(duration, 'seconds')
|
const dur = dayjs.duration(duration, 'seconds')
|
||||||
const days = Math.floor(dur.asDays())
|
const days = dur.days()
|
||||||
if (days > 0) {
|
if (days > 0) {
|
||||||
return days + i18nGlobal.t('common.unit_day') + ' ' + dur.format('HH:mm:ss')
|
return days + i18nGlobal.t('common.unit_day') + ' ' + dur.format('HH:mm:ss')
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue