project-booster-vue 9.28.1 → 9.28.2

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": "project-booster-vue",
3
- "version": "9.28.1",
3
+ "version": "9.28.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -376,7 +376,7 @@ export const mediaDocumentsListStoreOptions = {
376
376
  state.currentMediaPage * state.mediaPerPageCount,
377
377
  state.currentMediaPage * state.mediaPerPageCount + mediaNumberToAdd - 1,
378
378
  state.currentProjectId,
379
- state.context.subType,
379
+ state.context?.subType,
380
380
  );
381
381
  commit('addMedia', media.results ? media.results : []);
382
382
 
@@ -415,7 +415,7 @@ export const mediaDocumentsListStoreOptions = {
415
415
  0,
416
416
  state.currentMediaPage * state.mediaPerPageCount - 1,
417
417
  state.currentProjectId,
418
- state.context.subType,
418
+ state.context?.subType,
419
419
  );
420
420
  commit('setMediaList', media.results);
421
421