mirror of
https://github.com/tornadocash/tornado-classic-ui
synced 2024-02-02 15:04:09 +01:00
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
export function enabledSaveFile({ dispatch, getters }) {
|
|
dispatch('createMutation', {
|
|
type: 'ENABLED_SAVE_FILE',
|
|
payload: { isEnabled: !getters.isEnabledSaveFile }
|
|
})
|
|
}
|