Skip to content

Commit

Permalink
fix(outlook): Fix Outlook's description autofill (#2071)
Browse files Browse the repository at this point in the history
Closes #2045
  • Loading branch information
nunofmn authored Apr 5, 2022
1 parent bc99d4d commit 7721ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/outlook.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ togglbutton.render(
(elem) => {
const link = togglbutton.createTimerLink({
className: "outlook",
description: elem.textContent,
description: () => document.querySelector('div[role="heading"]').textContent
});

elem.childNodes[0].appendChild(link);
Expand Down

0 comments on commit 7721ac0

Please sign in to comment.