summaryrefslogtreecommitdiff
path: root/packages/client/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components')
-rw-r--r--packages/client/src/components/post-form-attaches.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/client/src/components/post-form-attaches.vue b/packages/client/src/components/post-form-attaches.vue
index 0782ce22e5..4555fc1a2d 100644
--- a/packages/client/src/components/post-form-attaches.vue
+++ b/packages/client/src/components/post-form-attaches.vue
@@ -99,10 +99,12 @@ export default defineComponent({
}, {
done: result => {
if (!result || result.canceled) return;
- let comment = result.result;
+ let comment = result.result.length == 0 ? null : result.result;
os.api('drive/files/update', {
fileId: file.id,
- comment: comment.length == 0 ? null : comment
+ comment: comment,
+ }).then(() => {
+ file.comment = comment;
});
}
}, 'closed');