project-booster-vue 8.126.1 → 8.126.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
|
@@ -303,16 +303,16 @@ export const mediaDocumentsListStoreOptions = {
|
|
|
303
303
|
}
|
|
304
304
|
},
|
|
305
305
|
isAddPhotoDisabled(state) {
|
|
306
|
-
return state.
|
|
306
|
+
return state.isAddPhotoDisabled;
|
|
307
307
|
},
|
|
308
308
|
getCurrentMedia(state) {
|
|
309
|
-
return state.
|
|
309
|
+
return state.currentMedia;
|
|
310
310
|
},
|
|
311
311
|
isLoadingMedium(state) {
|
|
312
|
-
return state.
|
|
312
|
+
return state.isLoadingMedium;
|
|
313
313
|
},
|
|
314
314
|
getMediumLoadError(state) {
|
|
315
|
-
return state.
|
|
315
|
+
return state.mediumLoadError;
|
|
316
316
|
},
|
|
317
317
|
},
|
|
318
318
|
mutations: {
|