diff --git a/app/src/assets/scss/protyle/_wysiwyg.scss b/app/src/assets/scss/protyle/_wysiwyg.scss index b556971b4..bc488b829 100644 --- a/app/src/assets/scss/protyle/_wysiwyg.scss +++ b/app/src/assets/scss/protyle/_wysiwyg.scss @@ -604,10 +604,16 @@ &--attr .protyle-attr { opacity: 1; - & > div:not(.protyle-attr--memo):not(.protyle-attr--refcount) { - cursor: pointer; - @include mixin.text-clamp(1); - max-width: 25vw; + & > div { + &.protyle-attr--memo { + cursor: pointer; + } + + &:not(.protyle-attr--memo):not(.protyle-attr--refcount) { + cursor: pointer; + @include mixin.text-clamp(1); + max-width: 25vw; + } } } diff --git a/app/src/protyle/header/Title.ts b/app/src/protyle/header/Title.ts index 87f913f40..375924b36 100644 --- a/app/src/protyle/header/Title.ts +++ b/app/src/protyle/header/Title.ts @@ -381,7 +381,7 @@ export class Title { nodeAttrHTML += `
${Lute.EscapeHTMLStr(response.data.ial.alias)}
`; } if (response.data.ial.memo) { - nodeAttrHTML += `
`; + nodeAttrHTML += `
`; } if (response.data.ial["custom-avs"]) { let avTitle = ""; diff --git a/app/src/protyle/wysiwyg/transaction.ts b/app/src/protyle/wysiwyg/transaction.ts index 27d0376bf..b25ad8b4f 100644 --- a/app/src/protyle/wysiwyg/transaction.ts +++ b/app/src/protyle/wysiwyg/transaction.ts @@ -540,7 +540,7 @@ export const onTransaction = (protyle: IProtyle, operation: IOperation, isUndo: } else if (key === "alias") { aliasHTML = `
${escapeHTML}
`; } else if (key === "memo") { - memoHTML = `
`; + memoHTML = `
`; } else if (key === "custom-avs" && data.new["av-names"]) { avHTML = `
${data.new["av-names"]}
`; }