* Get the current NLP input value from either markdown editor or fallback textarea
()
| 403 | * Get the current NLP input value from either markdown editor or fallback textarea |
| 404 | */ |
| 405 | private getNLPInputValue(): string { |
| 406 | if (this.nlMarkdownEditor) { |
| 407 | return this.nlMarkdownEditor.value; |
| 408 | } else if (this.nlInput) { |
| 409 | return this.nlInput.value; |
| 410 | } |
| 411 | return ""; |
| 412 | } |
| 413 | |
| 414 | protected createActionBar(container: HTMLElement): void { |
| 415 | this.actionBar = container.createDiv("tn-task-modal__action-bar"); |
no outgoing calls
no test coverage detected