classic-ui/modules/account/store/mutations/EnabledSaveFile.js
2022-10-13 15:50:29 +02:00

6 lines
172 B
JavaScript

export const enabledSaveFile = {
ENABLED_SAVE_FILE(state, { netId, isEnabled }) {
this._vm.$set(state.ui[`netId${netId}`], 'isEnabledSaveFile', isEnabled)
}
}