diff --git a/client/src/plus/collections/collection.tsx b/client/src/plus/collections/collection.tsx index 51f753e90c78..d480435e916d 100644 --- a/client/src/plus/collections/collection.tsx +++ b/client/src/plus/collections/collection.tsx @@ -259,7 +259,7 @@ function ItemComponent({ icon="edit" type="action" onClickHandler={(e) => { - gleanClick(PLUS_COLLECTIONS.EDIT_NOTE); + gleanClick(PLUS_COLLECTIONS.ACTIONS_NOTE_EDIT); return openBookmarkMenu(e); }} > @@ -301,7 +301,7 @@ function ItemComponent({ icon="edit" type="action" onClickHandler={(e) => { - gleanClick(PLUS_COLLECTIONS.ADD_NOTE); + gleanClick(PLUS_COLLECTIONS.ACTIONS_NOTE_ADD); return openBookmarkMenu(e); }} > diff --git a/client/src/telemetry/constants.ts b/client/src/telemetry/constants.ts index 64aa508f3141..42efca99ba27 100644 --- a/client/src/telemetry/constants.ts +++ b/client/src/telemetry/constants.ts @@ -19,12 +19,12 @@ export const PLAYGROUND = "play_action"; export const AI_EXPLAIN = "ai_explain"; export const PLUS_COLLECTIONS = Object.freeze({ + ACTIONS_NOTE_ADD: "collections_actions_note_add", + ACTIONS_NOTE_EDIT: "collections_actions_note_edit", ARTICLE_ACTIONS_SELECT_OPENED: "article_actions_collection_select_opened", ARTICLE_ACTIONS_NEW: "article_actions_new_collection", ARTICLE_ACTIONS_OPENED: "article_actions_collections_opened", BANNER_NEW: "collections_banner_new_collection", - ADD_NOTE: "collections_add_note", - EDIT_NOTE: "collections_edit_note", NEW_MODAL_SUBMIT_ARTICLE_ACTIONS: "new_collection_modal_submit_article_actions", NEW_MODAL_SUBMIT_COLLECTIONS_PAGE: