@worksafevictoria/wcl7.5 1.1.16 → 1.1.18

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.1.16",
3
+ "version": "1.1.18",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -15,7 +15,7 @@
15
15
  @prevPage="() => $emit('prevPage')"
16
16
  />
17
17
  <i v-if="preview" class="fa fa-info-circle text-muted">
18
- preview mode. submission logged to console
18
+ <span> preview mode. submission logged to console</span>
19
19
  </i>
20
20
  </div>
21
21
  </div>
@@ -13,7 +13,7 @@
13
13
  @prevPage="() => $emit('prevPage')"
14
14
  />
15
15
  <i v-if="preview" class="fa fa-info-circle text-muted">
16
- preview mode. submission logged to console
16
+ <span> preview mode. submission logged to console</span>
17
17
  </i>
18
18
  </div>
19
19
  </template>
@@ -93,8 +93,8 @@ const DefaultPagination = (args) => ({
93
93
  <h4>Sample Table data</h4>
94
94
  <table id="no-more-tables" class="table-bordered border">
95
95
  <tr v-for="(row, index) in items.slice(((cPage-1)*args.rows), ((cPage)*args.rows))" :key="index">
96
- <td data-title="Name">{{row.name}}</td>
97
- <td data-title="ID">{{row.id}}</td>
96
+ <td style="border-width: 1px" data-title="Name">{{row.name}}</td>
97
+ <td style="border-width: 1px" data-title="ID">{{row.id}}</td>
98
98
  </tr>
99
99
  </table>
100
100
  <br/>