Inbox keyboard action (#2977)

This commit is contained in:
Denis Bykhov
2023-04-13 23:12:20 +07:00
committed by GitHub
parent 12974b5bb7
commit ad4394d541
8 changed files with 93 additions and 39 deletions
@@ -15,7 +15,7 @@
<script lang="ts">
import { Doc, DocumentQuery, Ref } from '@hcengineering/core'
import { Issue, Project } from '@hcengineering/tracker'
import { Viewlet, ViewOptions } from '@hcengineering/view'
import { ViewOptions, Viewlet } from '@hcengineering/view'
import {
ActionContext,
List,
@@ -23,7 +23,6 @@
SelectDirection,
selectionStore
} from '@hcengineering/view-resources'
import { onDestroy } from 'svelte'
import tracker from '../../../plugin'
export let query: DocumentQuery<Issue> | undefined = undefined
@@ -43,10 +42,6 @@
list.select(offset, of)
}
})
onDestroy(() => {
ListSelectionProvider.Pop()
})
</script>
<ActionContext