From 9cb4411366d87814d4be8fdd963001b6e2740ff6 Mon Sep 17 00:00:00 2001 From: Mert E Date: Thu, 13 Jun 2024 17:14:02 +0300 Subject: [PATCH] fix: missing changes (#8724) Signed-off-by: mertmit --- packages/nc-gui/assets/nc-icons/checkFill.svg | 11 + .../nc-gui/assets/nc-icons/external-link.svg | 7 + .../nc-gui/assets/nc-icons/strike-through.svg | 5 +- .../nc-gui/components/account/Profile.vue | 4 +- .../components/cell/RichText/LinkOptions.vue | 14 +- .../smartsheet/expanded-form/Comments.vue | 197 ++++++++++-------- .../smartsheet/expanded-form/RichComment.vue | 89 ++++++-- .../smartsheet/expanded-form/index.vue | 2 +- .../helpers/dbTiptapExtensions/links.ts | 13 +- packages/nc-gui/utils/iconUtils.ts | 4 + packages/nocodb/src/meta/meta.service.ts | 7 +- packages/nocodb/src/models/Comment.ts | 24 +++ .../notifications/notifications.service.ts | 2 +- 13 files changed, 263 insertions(+), 116 deletions(-) create mode 100644 packages/nc-gui/assets/nc-icons/checkFill.svg create mode 100644 packages/nc-gui/assets/nc-icons/external-link.svg diff --git a/packages/nc-gui/assets/nc-icons/checkFill.svg b/packages/nc-gui/assets/nc-icons/checkFill.svg new file mode 100644 index 0000000000..7718b96ada --- /dev/null +++ b/packages/nc-gui/assets/nc-icons/checkFill.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/packages/nc-gui/assets/nc-icons/external-link.svg b/packages/nc-gui/assets/nc-icons/external-link.svg new file mode 100644 index 0000000000..2d4edd6725 --- /dev/null +++ b/packages/nc-gui/assets/nc-icons/external-link.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/packages/nc-gui/assets/nc-icons/strike-through.svg b/packages/nc-gui/assets/nc-icons/strike-through.svg index 26cff0ca23..751c696fe0 100644 --- a/packages/nc-gui/assets/nc-icons/strike-through.svg +++ b/packages/nc-gui/assets/nc-icons/strike-through.svg @@ -1,7 +1,6 @@ - - - + + diff --git a/packages/nc-gui/components/account/Profile.vue b/packages/nc-gui/components/account/Profile.vue index 8aeaed23a5..ce90f53425 100644 --- a/packages/nc-gui/components/account/Profile.vue +++ b/packages/nc-gui/components/account/Profile.vue @@ -32,7 +32,7 @@ const onSubmit = async () => { isErrored.value = false try { - await updateUserProfile({ attrs: { display_name: form.value.title } }) + await updateUserProfile({ attrs: { display_name: form.value?.title } }) } catch (e: any) { console.error(e) } finally { @@ -102,7 +102,7 @@ const onValidate = async (_: any, valid: boolean) => { {