diff options
Diffstat (limited to 'source/features/sync-pr-commit-title.tsx')
-rw-r--r-- | source/features/sync-pr-commit-title.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/features/sync-pr-commit-title.tsx b/source/features/sync-pr-commit-title.tsx index c01d65b5..c2ee4a87 100644 --- a/source/features/sync-pr-commit-title.tsx +++ b/source/features/sync-pr-commit-title.tsx @@ -67,6 +67,9 @@ async function updateCommitTitle(): Promise<void> { if (field) { // Do not use `text-field-edit` #6348 field.value = createCommitTitle(); + + // There might be listeners that need to be notified + field.dispatchEvent(new Event('input', {bubbles: true})); } } |