@monoui/vuejs 1.1.70 → 1.1.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoui/vuejs",
3
- "version": "1.1.70",
3
+ "version": "1.1.71",
4
4
  "description": "This project will contain MonoFor UI Framework",
5
5
  "main": "./dist/main.js",
6
6
  "repository": "git@gitlab.com:monoui/vuejs.git",
@@ -552,7 +552,8 @@ export default {
552
552
  searchDebounceTimeout: null,
553
553
  comingFromPopState: false,
554
554
  skipWatch: false,
555
- selectedCorrelationId: null
555
+ selectedCorrelationId: null,
556
+ emptyGuid: "00000000-0000-0000-0000-000000000000"
556
557
  };
557
558
  },
558
559
  computed: {
@@ -613,8 +614,13 @@ export default {
613
614
  },
614
615
 
615
616
  mouseEnter(row) {
616
- if (row && row[this.correlationPropertyName])
617
+ if (
618
+ row &&
619
+ row[this.correlationPropertyName] &&
620
+ row[this.correlationPropertyName] !== this.emptyGuid
621
+ )
617
622
  this.selectedCorrelationId = row[this.correlationPropertyName];
623
+ else this.selectedCorrelationId = null;
618
624
  },
619
625
 
620
626
  mouseLeave() {