mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-22 09:35:00 +02:00
TSK-1309, TSK-1310, TSK-571 (#3048)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -143,7 +143,7 @@
|
||||
|
||||
let kanbanUI: Kanban
|
||||
const listProvider = new ListSelectionProvider((offset: 1 | -1 | 0, of?: Doc, dir?: SelectDirection) => {
|
||||
kanbanUI.select(offset, of, dir)
|
||||
kanbanUI?.select(offset, of, dir)
|
||||
})
|
||||
onMount(() => {
|
||||
;(document.activeElement as HTMLElement)?.blur()
|
||||
@@ -172,6 +172,8 @@
|
||||
}
|
||||
)
|
||||
|
||||
$: listProvider.update(issues)
|
||||
|
||||
let categories: CategoryType[] = []
|
||||
|
||||
const queryId = generateId()
|
||||
@@ -265,9 +267,6 @@
|
||||
{setGroupByValues}
|
||||
{getUpdateProps}
|
||||
{groupByDocs}
|
||||
on:content={(evt) => {
|
||||
listProvider.update(evt.detail)
|
||||
}}
|
||||
on:obj-focus={(evt) => {
|
||||
listProvider.updateFocus(evt.detail)
|
||||
}}
|
||||
|
||||
+1
-1
@@ -72,7 +72,7 @@
|
||||
<div
|
||||
class="{twoRows ? 'flex-col' : 'flex-between'} p-text-2"
|
||||
on:contextmenu|preventDefault={(ev) => showContextMenu(ev, report)}
|
||||
on:mouseover={() => {
|
||||
on:mouseenter={() => {
|
||||
listProvider.updateFocus(report)
|
||||
}}
|
||||
on:focus={() => {
|
||||
|
||||
Reference in New Issue
Block a user