We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac642f1 commit 1abfc19Copy full SHA for 1abfc19
src/sidebar/services/frame-sync.js
@@ -19,8 +19,8 @@ export function formatAnnot(ann) {
19
for (let i = 0; i < s.length; i++) {
20
h = (Math.imul(31, h) + s.charCodeAt(i)) | 0;
21
}
22
-
23
- return `#${Math.abs(h).toString(16).padStart(6, '0').substr(0, 6)}`;
+ return `hsl(${Math.abs(h) % 360}, 100%, 85%)`;
+ // return `#${Math.abs(h).toString(16).padStart(6, '0').substr(0, 6)}`;
24
25
return {
26
tag: ann.$tag,
src/sidebar/store/modules/annotations.js
@@ -86,7 +86,6 @@ function initializeAnnotation(annotation, tag) {
86
$anchorTimeout: false,
87
$tag: annotation.$tag || tag,
88
$orphan: orphan,
89
- $user: annotation.user,
90
});
91
92
0 commit comments