We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2273af3 commit 6a7e8adCopy full SHA for 6a7e8ad
src/packages/tiptap/extensions/toolbar/link.extension.ts
@@ -75,7 +75,9 @@ export default class UmbTiptapToolbarLinkExtensionApi extends UmbTiptapToolbarEl
75
76
const anchor = this.#getAnchorFromQueryString(queryString);
77
78
- if (anchor) url += anchor;
+ if (anchor) {
79
+ url = (url ?? '') + anchor;
80
+ }
81
82
if (!url) return null;
83
0 commit comments