[Client] Resolve #2596

This commit is contained in:
syuilo 2018-12-02 20:24:38 +09:00
parent e4475a23c5
commit 0f36f88a35

View file

@ -219,6 +219,16 @@ export default Vue.extend({
(this.$refs.text as any).focus();
},
addVisibleUser() {
this.$root.dialog({
title: this.$t('enter-username'),
user: true
}).then(({ canceled, result: user }) => {
if (canceled) return;
this.visibleUsers.push(user);
});
},
chooseFile() {
(this.$refs.file as any).click();
},