Skip to content
Snippets Groups Projects
Commit b5cadeca authored by syuilo's avatar syuilo
Browse files

fix(client): コントロールパネルでファイルを削除した際の表示を修正

Fix #7631
parent c8e93054
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@
### Bugfixes
- タッチ操作でウィンドウを閉じることができない問題を修正
- Renoteされた時刻が投稿された時刻のように表示される問題を修正
- コントロールパネルでファイルを削除した際の表示を修正
- ActivityPub: 長いユーザーの名前や自己紹介の対応
## 12.87.0 (2021/08/12)
......
......@@ -93,10 +93,8 @@ export default defineComponent({
});
if (canceled) return;
os.api('drive/files/delete', {
os.apiWithDialog('drive/files/delete', {
fileId: this.file.id
}).then(() => {
this.$refs.files.removeItem(x => x.id === this.file.id);
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment