📝 →
This commit is contained in:
parent
70e6a3182d
commit
e25c9070e2
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ export const initBlockPopover = (app: App) => {
|
|||
if (aElement.classList.contains("av__celltext")) {
|
||||
if (aElement.offsetWidth > aElement.parentElement.clientWidth - 11) {
|
||||
if (aElement.querySelector(".av__cellicon")) {
|
||||
tip = `${aElement.firstChild.textContent} ➡️ ${aElement.lastChild.textContent}`;
|
||||
tip = `${aElement.firstChild.textContent} → ${aElement.lastChild.textContent}`;
|
||||
} else {
|
||||
tip = aElement.textContent;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ export const avClick = (protyle: IProtyle, event: MouseEvent & { target: HTMLEle
|
|||
if (copyElement) {
|
||||
const textElement = copyElement.previousElementSibling
|
||||
if (textElement.querySelector(".av__cellicon")) {
|
||||
writeText(`${textElement.firstChild.textContent} ➡️ ${textElement.lastChild.textContent}`);
|
||||
writeText(`${textElement.firstChild.textContent} → ${textElement.lastChild.textContent}`);
|
||||
} else {
|
||||
writeText(textElement.textContent);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue