diff --git a/app/src/protyle/hint/extend.ts b/app/src/protyle/hint/extend.ts
index 06ea1dd2e..2a137d804 100644
--- a/app/src/protyle/hint/extend.ts
+++ b/app/src/protyle/hint/extend.ts
@@ -447,7 +447,9 @@ export const hintRenderTemplate = (value: string, protyle: IProtyle, nodeElement
export const hintRenderWidget = (value: string, protyle: IProtyle) => {
focusByRange(protyle.toolbar.range);
- insertHTML(protyle.lute.SpinBlockDOM(``), protyle, true);
+ // src 地址以 / 结尾
+ // Use the path ending with `/` when loading the widget https://github.com/siyuan-note/siyuan/issues/10520
+ insertHTML(protyle.lute.SpinBlockDOM(``), protyle, true);
hideElements(["util"], protyle);
};