@webitel/ui-sdk 25.10.21 → 25.10.22

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": "@webitel/ui-sdk",
3
- "version": "25.10.21",
3
+ "version": "25.10.22",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
@@ -209,10 +209,10 @@ const actions = {
209
209
  await context.dispatch('SET_SELECTED', []);
210
210
 
211
211
  /* if no items on current page after DELETE, move to prev page [WTEL-3793] */
212
- if (!context.state.dataList.length && context.getters.FILTERS.page > 1) {
212
+ if (!context.state.dataList.length && context.getters.FILTERS().page > 1) {
213
213
  await context.dispatch('SET_FILTER', {
214
214
  name: 'page',
215
- value: context.getters.FILTERS.page - 1,
215
+ value: context.getters.FILTERS().page - 1,
216
216
  });
217
217
  }
218
218
  }