From 851f2982a954f4ea8a8baaaec508bc351f71a4a2 Mon Sep 17 00:00:00 2001 From: Pieter Verschaffelt Date: Thu, 8 Feb 2024 10:34:28 +0100 Subject: [PATCH] Fix could not change feature type in heatmap selection wizard --- package.json | 2 +- src/components/tables/DataSourceTable.vue | 3 +-- .../heatmap/single/DataSourceSingle.vue | 22 ++++++++++--------- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 3ce4020..d580ba8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "unipept-web-components", - "version": "2.1.4", + "version": "2.1.5", "scripts": { "dev": "vite", "build": "vue-tsc --emitDeclarationOnly && vite build && tsc --emitDeclarationOnly && tsc-alias && rm -rf types/test types/plugins types/main.d.ts", diff --git a/src/components/tables/DataSourceTable.vue b/src/components/tables/DataSourceTable.vue index ab9f4f6..50277cd 100644 --- a/src/components/tables/DataSourceTable.vue +++ b/src/components/tables/DataSourceTable.vue @@ -35,7 +35,7 @@ ("All"); const selectedItems = ref([]); -const allItems = ref(props.items); const selectAll = () => { selectedItems.value = props.items; diff --git a/src/components/visualizations/heatmap/single/DataSourceSingle.vue b/src/components/visualizations/heatmap/single/DataSourceSingle.vue index ffda2a5..eeb147c 100644 --- a/src/components/visualizations/heatmap/single/DataSourceSingle.vue +++ b/src/components/visualizations/heatmap/single/DataSourceSingle.vue @@ -20,7 +20,7 @@