Skip to content

Commit e469f82

Browse files
committed
fix: remove log
1 parent 1638e74 commit e469f82

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Diff for: src/components/VueCommand.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -479,16 +479,14 @@ onMounted(() => {
479479
bindEventListener(currentInstance.refs, currentInstance.exposed)
480480
}
481481
482+
// Scroll to bottom if history changes
482483
const resizeObsever = new ResizeObserver(() => {
483484
// TODO Only scroll to bottom if user scrolled to bottom before
484485
vueCommandHistoryRef.value.scrollTop = vueCommandHistoryRef.value.scrollHeight
485486
})
486-
487-
// Scroll to bottom if history changes
488487
for (const vueCommandHistoryEntry of vueCommandHistoryRef.value.children) {
489488
resizeObsever.observe(vueCommandHistoryEntry)
490489
}
491-
492490
// If history changes, unobserve all history entries and observe again
493491
watch(local.history, async () => {
494492
await nextTick()

Diff for: src/components/VueCommandQuery.vue

-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ const reverseISearch = event => {
244244
}
245245
// Cancels the current query or multiline query and creates a new query
246246
const sigint = () => {
247-
console.debug('sigint')
248247
if (isEmpty(multilineQueries)) {
249248
// "setQuery" would overwrite the parent query while we only need to
250249
// overwrite the locale one

0 commit comments

Comments
 (0)