QFix Kanban (#3135)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2023-05-04 15:51:26 +07:00 committed by GitHub
parent 4782a17cf0
commit 4801b20d8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
{ "major": 0, "minor": 6, "patch": 92 } { "major": 0, "minor": 6, "patch": 93 }

View File

@ -287,13 +287,13 @@
<!-- {@const status = $statusStore.get(state._id)} --> <!-- {@const status = $statusStore.get(state._id)} -->
{#key lth} {#key lth}
<div <div
style:--kanban-header-rgb-color={accentColors[index].backgroundColor} style:--kanban-header-rgb-color={accentColors[index]?.backgroundColor}
class="header flex-row-center" class="header flex-row-center"
class:gradient={!lth} class:gradient={!lth}
> >
<span <span
class="clear-mins fs-bold overflow-label pointer-events-none" class="clear-mins fs-bold overflow-label pointer-events-none"
style:color={accentColors[index].textColor} style:color={accentColors[index]?.textColor}
> >
{#if groupByKey === noCategory} {#if groupByKey === noCategory}
<Label label={view.string.NoGrouping} /> <Label label={view.string.NoGrouping} />

View File

@ -305,14 +305,14 @@
<!-- {@const status = $statusStore.get(state._id)} --> <!-- {@const status = $statusStore.get(state._id)} -->
{#key lth} {#key lth}
<div <div
style:--kanban-header-rgb-color={accentColors[index].backgroundColor} style:--kanban-header-rgb-color={accentColors[index]?.backgroundColor}
class="header flex-between" class="header flex-between"
class:gradient={!lth} class:gradient={!lth}
> >
<div class="flex-row-center gap-1"> <div class="flex-row-center gap-1">
<span <span
class="clear-mins fs-bold overflow-label pointer-events-none" class="clear-mins fs-bold overflow-label pointer-events-none"
style:color={accentColors[index].textColor} style:color={accentColors[index]?.textColor}
> >
{#if groupByKey === noCategory} {#if groupByKey === noCategory}
<Label label={view.string.NoGrouping} /> <Label label={view.string.NoGrouping} />