@monoui/vuejs 1.1.70 → 1.1.72

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.72",
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",
@@ -309,16 +309,6 @@
309
309
 
310
310
  <b-dropdown-divider />
311
311
 
312
- <b-dropdown-item
313
- :to="{
314
- name: 'Exports'
315
- }"
316
- target="_blank"
317
- >
318
- <mui-icon icon="link" class="mr-1" />
319
- Go Downloads
320
- </b-dropdown-item>
321
-
322
312
  <slot name="pagination-export-item"></slot>
323
313
  </b-dropdown>
324
314
  </template>
@@ -552,7 +542,8 @@ export default {
552
542
  searchDebounceTimeout: null,
553
543
  comingFromPopState: false,
554
544
  skipWatch: false,
555
- selectedCorrelationId: null
545
+ selectedCorrelationId: null,
546
+ emptyGuid: "00000000-0000-0000-0000-000000000000"
556
547
  };
557
548
  },
558
549
  computed: {
@@ -613,8 +604,13 @@ export default {
613
604
  },
614
605
 
615
606
  mouseEnter(row) {
616
- if (row && row[this.correlationPropertyName])
607
+ if (
608
+ row &&
609
+ row[this.correlationPropertyName] &&
610
+ row[this.correlationPropertyName] !== this.emptyGuid
611
+ )
617
612
  this.selectedCorrelationId = row[this.correlationPropertyName];
613
+ else this.selectedCorrelationId = null;
618
614
  },
619
615
 
620
616
  mouseLeave() {