()
| 57 | } |
| 58 | |
| 59 | function updateUi(): void { |
| 60 | if (needsSubmission()) { |
| 61 | $(commitTitleFieldSelector).parentElement!.after(getUi()); |
| 62 | } else { |
| 63 | getUi().remove(); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | async function updatePrTitle(): Promise<void> { |
| 68 | if (!needsSubmission()) { |
nothing calls this directly
no test coverage detected