diff options
| author | bobzel <zzzman@gmail.com> | 2024-04-19 11:32:46 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-04-19 11:32:46 -0400 |
| commit | 89e5b4e224d77c7a029ec7d9c9027095665508ac (patch) | |
| tree | b1163d7090da48d978858caa44c601401a9400f6 /src/client/views/nodes/formattedText/marks_rts.ts | |
| parent | b6229b0a6141afbfd0e78e3ec870218187864def (diff) | |
lint fixes.
Diffstat (limited to 'src/client/views/nodes/formattedText/marks_rts.ts')
| -rw-r--r-- | src/client/views/nodes/formattedText/marks_rts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/marks_rts.ts b/src/client/views/nodes/formattedText/marks_rts.ts index 0f3306bef..d1c7b72a5 100644 --- a/src/client/views/nodes/formattedText/marks_rts.ts +++ b/src/client/views/nodes/formattedText/marks_rts.ts @@ -335,7 +335,7 @@ export const marks: { [index: string]: MarkSpec } = { const min = Math.round(node.attrs.modified / 60); const hr = Math.round(min / 60); const day = Math.round(hr / 60 / 24); - const remote = node.attrs.userid !== ClientUtils.CurrentUserEmail ? ' UM-remote' : ''; + const remote = node.attrs.userid !== ClientUtils.CurrentUserEmail() ? ' UM-remote' : ''; return ['span', { class: 'UM-' + uid + remote + ' UM-min-' + min + ' UM-hr-' + hr + ' UM-day-' + day }, 0]; }, }, |
