Skip to content

Commit

Permalink
fix(zendesk): Fix Agent workspace TE description
Browse files Browse the repository at this point in the history
Closes #1880
  • Loading branch information
Phenome committed Apr 16, 2021
1 parent 9056d64 commit 948c090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/content/zendesk.js
Expand Up @@ -47,7 +47,7 @@ togglbutton.render('[data-test-id="customer-context-tab-navigation"]', { observe

if (ticketNum) {
const id = ticketNum[1].trim();
const titleElem = document.querySelector(`[data-side-conversations-anchor-id="${id}"] [data-test-id="ticket-pane-subject"]`);
const titleElem = document.querySelector(`[data-side-conversations-anchor-id="${id}"] input[aria-label="Subject"]`);

if (titleElem !== null) {
description = titleElem.value.trim();
Expand Down

0 comments on commit 948c090

Please sign in to comment.