{{else}}
{{/if}}
diff --git a/ui/lib/core/addon/components/masked-input.js b/ui/lib/core/addon/components/masked-input.js
index a22d544ee7..60ce782f84 100644
--- a/ui/lib/core/addon/components/masked-input.js
+++ b/ui/lib/core/addon/components/masked-input.js
@@ -5,7 +5,6 @@
import { debug } from '@ember/debug';
import { action } from '@ember/object';
-import { guidFor } from '@ember/object/internals';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import autosize from 'autosize';
@@ -26,7 +25,6 @@ import autosize from 'autosize';
*
*/
export default class MaskedInputComponent extends Component {
- textareaId = 'textarea-' + guidFor(this);
@tracked showValue = false;
@tracked modalOpen = false;
@tracked stringifyDownload = false;
@@ -36,11 +34,10 @@ export default class MaskedInputComponent extends Component {
if (!this.args.onChange && !this.args.displayOnly) {
debug('onChange is required for editable Masked Input!');
}
- this.updateSize();
}
- updateSize() {
- autosize(document.getElementById(this.textareaId));
+ updateSize(element) {
+ autosize(element);
}
@action onChange(evt) {
diff --git a/ui/lib/core/addon/components/object-list-input.hbs b/ui/lib/core/addon/components/object-list-input.hbs
index 10768125ef..d55b33ac8d 100644
--- a/ui/lib/core/addon/components/object-list-input.hbs
+++ b/ui/lib/core/addon/components/object-list-input.hbs
@@ -22,7 +22,6 @@
@type="text"
@value={{value}}
name={{field.key}}
- id="{{field.key}}-{{index}}"
{{on "input" (fn this.handleInput index)}}
/>
{{#if (and (not inputError.isValid) inputError.errors)}}
diff --git a/ui/lib/core/addon/components/select.hbs b/ui/lib/core/addon/components/select.hbs
index 3ac1a2584e..ed032de985 100644
--- a/ui/lib/core/addon/components/select.hbs
+++ b/ui/lib/core/addon/components/select.hbs
@@ -12,11 +12,9 @@