Vanessa 2024-03-27 11:45:09 +08:00
parent d517065f45
commit 284ec21b3b
2 changed files with 5 additions and 2 deletions

View file

@ -120,6 +120,8 @@
white-space: break-spaces;
line-height: 26px;
margin: 8px 0;
// 移动端面包屑过长
word-wrap: break-word;
}
&__icon {

View file

@ -31,6 +31,7 @@ import {emitOpenMenu} from "../../plugin/EventBus";
import {isInAndroid, isIPad, isMac, updateHotkeyTip} from "../util/compatibility";
import {resize} from "../util/resize";
import {listIndent, listOutdent} from "../wysiwyg/list";
import {escapeAttr, escapeHtml} from "../../util/escape";
export class Breadcrumb {
public element: HTMLElement;
@ -243,7 +244,7 @@ ${padHTML}
menu.addItem({
current: isCurrent,
icon: getIconByType(item.type, item.subType),
label: item.name,
label: escapeHtml(item.name),
click() {
zoomOut({protyle, id: item.id, focusId: id});
}
@ -618,7 +619,7 @@ ${padHTML}
} else {
html += `<span class="protyle-breadcrumb__item${isCurrent ? " protyle-breadcrumb__item--active" : ""}" data-node-id="${item.id}"${(response.data.length === 1 || index === 0) ? ' style="max-width:none"' : ""}>
<svg class="popover__block" data-id="${item.id}"><use xlink:href="#${getIconByType(item.type, item.subType)}"></use></svg>
<span class="protyle-breadcrumb__text" title="${item.name}">${item.name}</span>
<span class="protyle-breadcrumb__text" title="${escapeAttr(item.name)}">${escapeHtml(item.name)}</span>
</span>`;
}
if (index !== response.data.length - 1) {