This commit is contained in:
parent
19079acfc3
commit
64c8ce7bb6
1 changed files with 3 additions and 1 deletions
|
@ -47,7 +47,9 @@ export const initBlockPopover = (app: App) => {
|
|||
if (!tip) {
|
||||
const href = aElement.getAttribute("data-href") || "";
|
||||
// 链接地址强制换行 https://github.com/siyuan-note/siyuan/issues/11539
|
||||
tip = `<span style="word-break: break-all">${href.substring(0, Constants.SIZE_TITLE)}</span>`;
|
||||
if (href) {
|
||||
tip = `<span style="word-break: break-all">${href.substring(0, Constants.SIZE_TITLE)}</span>`;
|
||||
}
|
||||
const title = aElement.getAttribute("data-title");
|
||||
if (tip && isLocalPath(href) && !aElement.classList.contains("b3-tooltips")) {
|
||||
let assetTip = tip;
|
||||
|
|
Loading…
Add table
Reference in a new issue