@policystudio/policy-studio-ui-vue 1.1.53 → 1.1.54

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": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.53",
3
+ "version": "1.1.54",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
@@ -284,7 +284,7 @@
284
284
  :fill-width="getPsBarChartWidth(column.key, item.data[column.key])"
285
285
  />
286
286
 
287
- <p v-else-if="item.data[column.key] != 0">
287
+ <p class="ps-table-cell-value" v-else-if="item.data[column.key] != 0">
288
288
  {{ formatFunction(column.key, item.data[column.key], item.data) }}
289
289
  </p>
290
290
  </div>
@@ -15,7 +15,7 @@
15
15
  v-for="column of columnGroup.columns"
16
16
  :key="indexColumn + '-' + columnGroup.key + '-' + column.key"
17
17
  >
18
- <p>{{ row.data[column.key] }}</p>
18
+ <p class="ps-table-cell-value">{{ row.data[column.key] }}</p>
19
19
  </td>
20
20
  </template>
21
21
  </tr>