electron app starting

This commit is contained in:
Jan Prochazka
2021-12-16 11:46:33 +01:00
parent 0a7c56dace
commit e636987f31
60 changed files with 132 additions and 129 deletions

View File

@@ -42,7 +42,7 @@
value="OK"
on:click={e => {
closeCurrentModal();
axiosInstance.post('config/update-settings', {
axiosInstance().post('config/update-settings', {
commands: {
...$commandsSettings,
[command.id]: {
@@ -58,7 +58,7 @@
value="Reset"
on:click={() => {
closeCurrentModal();
axiosInstance.post('config/update-settings', {
axiosInstance().post('config/update-settings', {
commands: _.omit($commandsSettings, [command.id]),
});
}}