mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 18:41:34 +08:00
Drop unused AccountUserStore.signature
Drop debounce from AccountUserStore.loading
This commit is contained in:
parent
36789bd3b5
commit
1a5ff4772d
1 changed files with 1 additions and 3 deletions
|
@ -2,11 +2,9 @@ import { addObservablesTo, koArrayWithDestroy } from 'External/ko';
|
|||
|
||||
export const AccountUserStore = koArrayWithDestroy();
|
||||
|
||||
AccountUserStore.loading = ko.observable(false).extend({ debounce: 100 });
|
||||
|
||||
AccountUserStore.getEmailAddresses = () => AccountUserStore.map(item => item.email);
|
||||
|
||||
addObservablesTo(AccountUserStore, {
|
||||
email: '',
|
||||
signature: ''
|
||||
loading: false
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue