@worksafevictoria/wcl7.5 1.14.0-beta.5 → 1.14.0-beta.7

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": "@worksafevictoria/wcl7.5",
3
- "version": "1.14.0-beta.5",
3
+ "version": "1.14.0-beta.7",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -418,6 +418,8 @@ export default {
418
418
  },
419
419
  mounted() {
420
420
  this.selected = this.isSelected
421
+ },
422
+ created() {
421
423
  this.parentGrid = this.getParentGridItem()
422
424
  if (this.parentGrid) {
423
425
  this.parentGrid.registerChild(this)
@@ -1,6 +1,9 @@
1
1
  <template>
2
2
  <!-- eslint-disable vue/no-v-html -->
3
3
  <container>
4
+ <div>
5
+ <hr />
6
+ </div>
4
7
  <row>
5
8
  <column sm="9">
6
9
  <div v-if="item.outcome" class="record-details__outcome">
@@ -89,3 +92,11 @@ export default {
89
92
  }
90
93
  }
91
94
  </script>
95
+
96
+ <style lang="scss" scoped>
97
+
98
+ .record-details__outcome {
99
+ margin-left: 20px !important;
100
+ }
101
+
102
+ </style>