@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/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/components/Table/Table.vue +8 -2
package/package.json
CHANGED
|
@@ -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 (
|
|
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() {
|