Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Dec 21, 2023
1 parent a185ab2 commit 1bada9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"photoswipe": "^5.2.8",
"postcss": "^8.4.5",
"quill": "^1.3.7",
"quill-mention-hi": "^3.1.0-2",
"quill-mention-hi": "^3.1.0-3",
"resolve-url-loader": "^4.0.0",
"sass": "~1.32.13",
"sass-loader": "^12.6.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,9 @@ export default {
return;
}
if (textType === "text") {
textBody = textBody.replace(/<\/span> <\/p>$/, "</span></p>")
textBody = textBody
.replace(/<\/span> <\/p>$/, "</span></p>")
.replace(/(<span\s+class="mention"(.*?)>.*?<\/span>.*?<\/span>.*?<\/span>)(\x20)?/, "$1 ")
}
//
if (this.quoteUpdate) {
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/sass/pages/page-setting.scss
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ body.window-portrait {
height: 100%;
z-index: 1;
> ul {
padding: 20px 0;
padding: 0 0 20px;
> li {
position: relative;
padding: 0 32px;
Expand Down

0 comments on commit 1bada9a

Please sign in to comment.