diff --git a/packages/ketchup-react/package-lock.json b/packages/ketchup-react/package-lock.json index 4513cf4860..ed02c5a11d 100644 --- a/packages/ketchup-react/package-lock.json +++ b/packages/ketchup-react/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sme.up/ketchup-react", - "version": "7.3.0", + "version": "7.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sme.up/ketchup-react", - "version": "7.3.0", + "version": "7.3.1", "license": "Apache-2.0", "dependencies": { "react": "18.2.0", diff --git a/packages/ketchup-react/package.json b/packages/ketchup-react/package.json index 1a10dda110..e428a560a0 100644 --- a/packages/ketchup-react/package.json +++ b/packages/ketchup-react/package.json @@ -1,6 +1,6 @@ { "name": "@sme.up/ketchup-react", - "version": "7.3.0", + "version": "7.3.1", "module": "dist/index.js", "typings": "dist/index.d.ts", "keywords": [ @@ -20,7 +20,7 @@ "description": "Ketchup React Components library by smeup", "license": "Apache-2.0", "dependencies": { - "@sme.up/ketchup": "^7.3.0", + "@sme.up/ketchup": "^7.3.1", "react": "18.2.0", "react-dom": "18.2.0" }, diff --git a/packages/ketchup-showcase/package.json b/packages/ketchup-showcase/package.json index 8df4bf19cf..d72efaf512 100644 --- a/packages/ketchup-showcase/package.json +++ b/packages/ketchup-showcase/package.json @@ -19,7 +19,7 @@ "lint": "vue-cli-service lint" }, "dependencies": { - "@sme.up/ketchup": "^7.3.0", + "@sme.up/ketchup": "^7.3.1", "core-js": "^3.8.3", "vue": "^2.6.14", "vue-router": "^3.5.1" diff --git a/packages/ketchup-showcase/src/App.vue b/packages/ketchup-showcase/src/App.vue index c7679ec0cc..226ae6a047 100644 --- a/packages/ketchup-showcase/src/App.vue +++ b/packages/ketchup-showcase/src/App.vue @@ -55,8 +55,8 @@ @kup-tree-nodeselected="treeClick" >
v7.3.0v7.3.1
diff --git a/packages/ketchup/package-lock.json b/packages/ketchup/package-lock.json index 864b030c9d..3a96cfcd3f 100644 --- a/packages/ketchup/package-lock.json +++ b/packages/ketchup/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sme.up/ketchup", - "version": "7.3.0", + "version": "7.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sme.up/ketchup", - "version": "7.3.0", + "version": "7.3.1", "license": "Apache-2.0", "dependencies": { "@fullcalendar/core": "^5.11.0", diff --git a/packages/ketchup/package.json b/packages/ketchup/package.json index 63f7310e94..3301f202c4 100644 --- a/packages/ketchup/package.json +++ b/packages/ketchup/package.json @@ -1,6 +1,6 @@ { "name": "@sme.up/ketchup", - "version": "7.3.0", + "version": "7.3.1", "keywords": [ "smeup", "KetchUP", diff --git a/packages/ketchup/src/components/kup-dash-list/kup-dash-list.tsx b/packages/ketchup/src/components/kup-dash-list/kup-dash-list.tsx index 84495764cc..7fba98d0f7 100644 --- a/packages/ketchup/src/components/kup-dash-list/kup-dash-list.tsx +++ b/packages/ketchup/src/components/kup-dash-list/kup-dash-list.tsx @@ -77,16 +77,22 @@ export class KupDashList { let valueInt = ''; let valueDec = ''; let iconColor = { - color: this.kupManager.theme.colorCheck(this.iconColor[count]) - .hexColor, + color: this.iconColor[count] + ? this.kupManager.theme.colorCheck(this.iconColor[count]) + .hexColor + : null, }; let textColor = { - color: this.kupManager.theme.colorCheck(this.textColor[count]) - .hexColor, + color: this.textColor[count] + ? this.kupManager.theme.colorCheck(this.textColor[count]) + .hexColor + : null, }; let valueColor = { - color: this.kupManager.theme.colorCheck(this.valueColor[count]) - .hexColor, + color: this.valueColor[count] + ? this.kupManager.theme.colorCheck(this.valueColor[count]) + .hexColor + : null, }; if (this.data.columns[0]) {