diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-25 16:06:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-25 16:06:11 +0900 |
| commit | ab8423e2b9ae6b9f23b355f2670d046b75f45706 (patch) | |
| tree | 6448329def4fef939f6af59c60adf5e6fd3308eb /src | |
| parent | [Client:Mobile] :v: (diff) | |
| download | misskey-ab8423e2b9ae6b9f23b355f2670d046b75f45706.tar.gz misskey-ab8423e2b9ae6b9f23b355f2670d046b75f45706.tar.bz2 misskey-ab8423e2b9ae6b9f23b355f2670d046b75f45706.zip | |
[Client:Desktop] Fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/desktop/tags/drive/file-contextmenu.tag | 4 |
1 files 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 edcbfba63e..b4b681242f 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('<i class="fa fa-check"></i>コピー完了', + dialog('<i class="fa fa-check"></i>コピー完了', 'ファイルのURLをクリップボードにコピーしました', [{ text: 'わー' }]); |