Remove IDs from input and select elements.

This commit is contained in:
Bauke 2022-11-15 23:37:03 +01:00
parent 645e0e066a
commit a0a11e3647
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 0 additions and 4 deletions

View File

@ -145,7 +145,6 @@ export default class Editor extends Component<Props, State> {
<div class="editor ${hasBeenEdited ? 'has-been-edited' : ''}"> <div class="editor ${hasBeenEdited ? 'has-been-edited' : ''}">
<select <select
class="select" class="select"
id="matcher-type"
title="Matcher Type" title="Matcher Type"
value=${matcherType} value=${matcherType}
onChange=${this.onMatcherTypeChange} onChange=${this.onMatcherTypeChange}
@ -155,7 +154,6 @@ export default class Editor extends Component<Props, State> {
<input <input
class="input" class="input"
id="matcher-value"
onInput=${this.onMatcherInput} onInput=${this.onMatcherInput}
placeholder="Matcher Value" placeholder="Matcher Value"
title="Matcher Value" title="Matcher Value"
@ -166,7 +164,6 @@ export default class Editor extends Component<Props, State> {
<select <select
class="select" class="select"
id="redirect-type"
title="Redirect Type" title="Redirect Type"
value=${redirectType} value=${redirectType}
onChange=${this.onRedirectTypeChange} onChange=${this.onRedirectTypeChange}
@ -176,7 +173,6 @@ export default class Editor extends Component<Props, State> {
<input <input
class="input" class="input"
id="redirect-value"
onInput=${this.onRedirectInput} onInput=${this.onRedirectInput}
placeholder="Redirect Value" placeholder="Redirect Value"
title="Redirect Value" title="Redirect Value"