@appscode/design-system 2.17.68 → 2.17.69

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": "@appscode/design-system",
3
- "version": "2.17.68",
3
+ "version": "2.17.69",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -117,10 +117,10 @@ watch(
117
117
  <label>Rows per page</label>
118
118
  <select v-model="selectedItemCountPerPage" name="page" data-testid="rows-per-page-selector">
119
119
  <option
120
- :value="itemsPerPage && ![5, 10, 15, 20, 25, 50].includes(itemsPerPage)"
120
+ :value="itemsPerPage"
121
121
  v-if="isUserDefinedItemsPerPage && ![5, 10, 15, 20, 25, 50].includes(itemsPerPage)"
122
122
  >
123
- default
123
+ {{ itemsPerPage }}
124
124
  </option>
125
125
  <option :value="5">5</option>
126
126
  <option :value="10" v-show="totalNoOfItems > 5">10</option>