aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/RichTextSchema.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-09-03 08:03:43 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-09-03 08:03:43 -0400
commit4a1d94325d5d1b5641cd280e89c442c114074e8d (patch)
tree83f9564428c9af22cf02cbc1fde82f21a79db599 /src/client/util/RichTextSchema.tsx
parentdc7990e969bff201fefe050ac321b2d2d1d58059 (diff)
cleanup names for formattedTextBoxComment stuff. fixed brushing bug with user_mark.
Diffstat (limited to 'src/client/util/RichTextSchema.tsx')
-rw-r--r--src/client/util/RichTextSchema.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/RichTextSchema.tsx b/src/client/util/RichTextSchema.tsx
index 3161467b8..7911cf629 100644
--- a/src/client/util/RichTextSchema.tsx
+++ b/src/client/util/RichTextSchema.tsx
@@ -346,7 +346,7 @@ export const marks: { [index: string]: MarkSpec } = {
return hidden ?
(node.attrs.opened ?
['span', { class: "userMarkOpen" }, 0] :
- ['span', { class: "userMark" }, ['span', { style: "font-size:2" }, 0]]
+ ['span', { class: "userMark" }, ['span', 0]]
) :
['span', 0];
}