From ab8423e2b9ae6b9f23b355f2670d046b75f45706 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 25 Mar 2017 16:06:11 +0900 Subject: [PATCH] [Client:Desktop] Fix bug --- src/web/app/desktop/tags/drive/file-contextmenu.tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/app/desktop/tags/drive/file-contextmenu.tag b/src/web/app/desktop/tags/drive/file-contextmenu.tag index edcbfba63..b4b681242 100644 --- a/src/web/app/desktop/tags/drive/file-contextmenu.tag +++ b/src/web/app/desktop/tags/drive/file-contextmenu.tag @@ -61,7 +61,7 @@ this.rename = () => { this.refs.ctx.close(); - this.inputDialog('ファイル名の変更', '新しいファイル名を入力してください', this.file.name, name => { + inputDialog('ファイル名の変更', '新しいファイル名を入力してください', this.file.name, name => { this.api('drive/files/update', { file_id: this.file.id, name: name @@ -72,7 +72,7 @@ this.copyUrl = () => { copyToClipboard(this.file.url); this.refs.ctx.close(); - this.dialog('コピー完了', + dialog('コピー完了', 'ファイルのURLをクリップボードにコピーしました', [{ text: 'わー' }]);