1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-19 22:35:15 +03:00

Moved finalize to correct place

This commit is contained in:
Darren Lines 2022-07-01 16:59:50 +01:00
parent 33c952e7b1
commit 02cfe59dfb

View file

@ -927,10 +927,10 @@ helper.defaultsDialog = (function () {
if (input.allow_reset) {
return mspHelper.setSetting(input.key, input.value);
}
});
}).then(setTimeout( function() {
privateScope.finalize(selectedDefaultPreset);
}, 6000));
}).then(setTimeout( function() {
privateScope.finalize(selectedDefaultPreset);
}, 6000));
});
}
});
};