This commit is contained in:
2023-07-17 07:24:08 +00:00
parent 383c1be382
commit 0e1de15d7c
17 changed files with 164 additions and 38 deletions

View File

@@ -3,7 +3,7 @@
import Selectbox from "./selectbox.svelte"
export let col: Column
export let pageId: number
export let pageId: string
let availableProperties = [
["A", "Aktien"],
@@ -23,7 +23,6 @@
let props
$: {
props = chunkArray([...availableProperties], 5)
console.log(props, "===props")
}
function chunkArray(myArray, chunk_size): string[][] {
@@ -57,7 +56,6 @@
abbriviation="{property[0]}"
name="{property[1]}"
on:click="{(e) => {
console.log(!selected[availableProperties.indexOf(property)], '===index')
selected[availableProperties.indexOf(property)] = e.detail
}}"
/>