Skip to content

Commit 11d0391

Browse files
committed
fix(GmailTools): update selector for message body input to improve compatibility
1 parent b64ce59 commit 11d0391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoints/content/components/GmailTools/GmailReplyCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ function applyReply() {
242242
243243
try {
244244
// Find the message body input box
245-
const messageBodyInputs = composeElement.value.querySelectorAll<HTMLElement>('[aria-label="Message Body"][role="textbox"]')
245+
const messageBodyInputs = composeElement.value.querySelectorAll<HTMLElement>('[g_editable="true"][role="textbox"]')
246246
if (messageBodyInputs.length == 0) {
247247
toast(t('gmail_tools.cards.notifications.no_compose_box_found'), { duration: 2000 })
248248
return

0 commit comments

Comments
 (0)