(html)
| 19 | }, |
| 20 | |
| 21 | escapeHTML(html) { |
| 22 | var element = document.createElement('div'); |
| 23 | element.innerHTML = html; |
| 24 | return element.innerHTML; |
| 25 | }, |
| 26 | |
| 27 | withDefaultPayload: (rsg) => { |
| 28 | const name = rsg.selectedValues[rsg.commandType]; |
nothing calls this directly
no outgoing calls
no test coverage detected