Skip to content

Commit

Permalink
TSK-1414: Fix exceptions in Kanban (#3119)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
  • Loading branch information
haiodo authored May 2, 2023
1 parent 439f4bb commit afea88f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion models/all/src/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "major": 0, "minor": 6, "patch": 78 }
{"major":0,"minor":6,"patch":92}
2 changes: 1 addition & 1 deletion packages/ui/src/components/icons/HalfUpDown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
const fill: string = 'currentColor'
</script>

<svg width="1rem" height=".5rem" {fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 8">
<svg width="16" height="8" {fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 8">
<polygon points="8,3.4 4.7,6.7 11.3,6.7 " />
</svg>
Original file line number Diff line number Diff line change
Expand Up @@ -287,13 +287,13 @@
<!-- {@const status = $statusStore.get(state._id)} -->
{#key lth}
<div
style:--kanban-header-rgb-color={accentColors[index].backgroundColor ?? '175, 175, 175'}
style:--kanban-header-rgb-color={accentColors[index]?.backgroundColor ?? '175, 175, 175'}
class="header flex-row-center"
class:gradient={!lth}
>
<span
class="clear-mins fs-bold overflow-label pointer-events-none"
style:color={accentColors[index].textColor ?? 'var(--theme-caption-color)'}
style:color={accentColors[index]?.textColor ?? 'var(--theme-caption-color)'}
>
{#if groupByKey === noCategory}
<Label label={view.string.NoGrouping} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,14 +305,14 @@
<!-- {@const status = $statusStore.get(state._id)} -->
{#key lth}
<div
style:--kanban-header-rgb-color={accentColors[index].backgroundColor ?? '175, 175, 175'}
style:--kanban-header-rgb-color={accentColors[index]?.backgroundColor ?? '175, 175, 175'}
class="header flex-between"
class:gradient={!lth}
>
<div class="flex-row-center gap-1">
<span
class="clear-mins fs-bold overflow-label pointer-events-none"
style:color={accentColors[index].textColor ?? 'var(--theme-caption-color)'}
style:color={accentColors[index]?.textColor ?? 'var(--theme-caption-color)'}
>
{#if groupByKey === noCategory}
<Label label={view.string.NoGrouping} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,12 @@
$: buildModel({ client, _class, keys: config, lookup }).then((res) => {
itemModels = res
res.forEach((m) => {
const key = `list_item_${m.props?.listProps.key}`
if (m.props?.listProps?.fixed) $fixedWidthStore[key] = 0
if (m.props?.listProps?.key !== undefined) {
const key = `list_item_${m.props.listProps.key}`
if (m.props.listProps.fixed) {
$fixedWidthStore[key] = 0
}
}
})
})
Expand Down

0 comments on commit afea88f

Please sign in to comment.