From 3a7e638fcec72964bda030b82220892f3073b6cb Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Wed, 28 Feb 2024 18:24:24 +0100 Subject: [PATCH] [Editor] Count the colors used when highlighting whatever the highlight kind is --- src/display/editor/highlight.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display/editor/highlight.js b/src/display/editor/highlight.js index f0a76e616..8c8f010e6 100644 --- a/src/display/editor/highlight.js +++ b/src/display/editor/highlight.js @@ -106,7 +106,7 @@ class HighlightEditor extends AnnotationEditor { /** @inheritdoc */ get telemetryFinalData() { return { - type: this.#telemetryType, + type: "highlight", color: this._uiManager.highlightColorNames.get(this.color), }; }