mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
$.proxy is deprecated
$.trim is deprecated
This commit is contained in:
parent
ae1b7610fd
commit
bbd9f49dcd
39 changed files with 153 additions and 173 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import ko from 'ko';
|
||||
|
||||
import { settingsSaveHelperSimpleFunction, trim } from 'Common/Utils';
|
||||
import { settingsSaveHelperSimpleFunction } from 'Common/Utils';
|
||||
import { settingsGet } from 'Storage/Settings';
|
||||
|
||||
import AppStore from 'Stores/Admin/App';
|
||||
|
|
@ -42,7 +42,7 @@ class LoginAdminSettings {
|
|||
|
||||
this.defaultDomain.subscribe((value) => {
|
||||
Remote.saveAdminConfig(f1, {
|
||||
'LoginDefaultDomain': trim(value)
|
||||
'LoginDefaultDomain': value.trim()
|
||||
});
|
||||
});
|
||||
}, 50);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue