(e)
| 50 | } |
| 51 | |
| 52 | async onSelectFiles (e) { |
| 53 | e.preventDefault() |
| 54 | |
| 55 | await convertImagesInInput(this.input) |
| 56 | |
| 57 | this.uploadFiles(this.input.files) |
| 58 | } |
| 59 | |
| 60 | toggleLoading = (e) => { |
| 61 | if (e && e.target && (!e.target.contains(this) || !e.detail?.formSubmission?.formElement?.contains(this))) { |
nothing calls this directly
no test coverage detected