()
| 552 | |
| 553 | |
| 554 | function toggleRequestReview() { |
| 555 | const rr = requestReviewInput.property('checked'); |
| 556 | updateChangeset({ review_requested: (rr ? 'yes' : undefined) }); |
| 557 | |
| 558 | tagSection |
| 559 | .call(rawTagEditor |
| 560 | .tags(Object.assign({}, uploader.changeset.tags)) // shallow copy |
| 561 | .render |
| 562 | ); |
| 563 | } |
| 564 | } |
| 565 | |
| 566 |
nothing calls this directly
no test coverage detected