mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-07-31 05:53:20 +02:00
refactor: Remove colon from quote format
Format changed from @[User]: »text« to @[User] »text« Guillemets alone are sufficient to separate the quote. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -782,7 +782,7 @@ function quoteTo(username, content) {
|
||||
quotedText = truncated + '...';
|
||||
}
|
||||
|
||||
input.value = `@[${username}]: »${quotedText}« `;
|
||||
input.value = `@[${username}] »${quotedText}« `;
|
||||
updateCharCounter();
|
||||
input.focus();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user