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
|
@@ -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
|
|
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
|
|
418
|
+
state.context?.subType,
|
|
419
419
|
);
|
|
420
420
|
commit('setMediaList', media.results);
|
|
421
421
|
|