1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-20 19:55:28 +02:00
This commit is contained in:
syuilo
2020-09-07 14:19:53 +09:00
parent 02701d852d
commit cd79314f69
38 changed files with 240 additions and 317 deletions

View File

@@ -452,7 +452,7 @@ export default defineComponent({
},
addPinUser() {
os.popup(MkUserSelect, {}).$once('selected', user => {
os.modal(MkUserSelect, {}).$once('selected', user => {
this.pinnedUsers = this.pinnedUsers.trim();
this.pinnedUsers += '\n@' + getAcct(user);
this.pinnedUsers = this.pinnedUsers.trim();
@@ -460,7 +460,7 @@ export default defineComponent({
},
chooseProxyAccount() {
os.popup(MkUserSelect, {}).$once('selected', user => {
os.modal(MkUserSelect, {}).$once('selected', user => {
this.proxyAccount = user;
this.proxyAccountId = user.id;
this.save(true);