mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 09:40:10 +00:00
feat(dashboard): reset new member/group input after submit
This commit is contained in:
parent
f14fee9ae1
commit
30f3dcf031
2 changed files with 5 additions and 4 deletions
|
|
@ -30,7 +30,7 @@
|
|||
dispatch('create', input);
|
||||
}
|
||||
|
||||
let input: Group = defaultGroup;
|
||||
let input: Group = JSON.parse(JSON.stringify(defaultGroup));
|
||||
|
||||
async function submit() {
|
||||
let data = input;
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
loading = true;
|
||||
try {
|
||||
let res = await api().groups().post({data});
|
||||
input = res;
|
||||
input = JSON.parse(JSON.stringify(defaultGroup));
|
||||
err = [];
|
||||
create();
|
||||
message = `Group ${data.name} successfully created!`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue