mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-06 05:09:43 -06:00
fix MultiLineTextInput
This commit is contained in:
@@ -21,11 +21,10 @@ export class TextInputComponent extends ComponentBase {
|
||||
private onChangeLimiter: Debouncer;
|
||||
|
||||
createElement(): HTMLElement {
|
||||
// Create the element
|
||||
let element = document.createElement('div');
|
||||
element.classList.add('rio-text-input');
|
||||
this.inputBox = new InputBox();
|
||||
|
||||
this.inputBox = new InputBox(element);
|
||||
let element = this.inputBox.outerElement;
|
||||
element.classList.add('rio-text-input');
|
||||
|
||||
// Create a rate-limited function for notifying the backend of changes.
|
||||
// This allows reporting changes to the backend in real-time, rather
|
||||
|
||||
Reference in New Issue
Block a user