Add missing bindings to grid column configuration primary display
This commit is contained in:
parent
d46feba5ad
commit
3ecc8f0cbb
|
@ -61,6 +61,7 @@
|
||||||
anchor={primaryDisplayColumnAnchor}
|
anchor={primaryDisplayColumnAnchor}
|
||||||
item={columns.primary}
|
item={columns.primary}
|
||||||
on:change={e => columns.update(e.detail)}
|
on:change={e => columns.update(e.detail)}
|
||||||
|
{bindings}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
export let item
|
export let item
|
||||||
export let anchor
|
export let anchor
|
||||||
|
export let bindings
|
||||||
|
|
||||||
let draggableStore = writable({
|
let draggableStore = writable({
|
||||||
selected: null,
|
selected: null,
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
componentInstance={item}
|
componentInstance={item}
|
||||||
{parseSettings}
|
{parseSettings}
|
||||||
on:change
|
on:change
|
||||||
|
{bindings}
|
||||||
>
|
>
|
||||||
<div slot="header" class="type-icon">
|
<div slot="header" class="type-icon">
|
||||||
<Icon name={icon} />
|
<Icon name={icon} />
|
||||||
|
|
Loading…
Reference in New Issue