Skip to content

Commit

Permalink
feat: set webid form input type to url (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
wouteraj authored Jun 17, 2022
1 parent 878208a commit 22ff867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class WebIdComponent extends RxLitElement {
<div class="webid-input-button-container ${ this.layout }" part="webid-input-button-container">
<div class="webid-input-container" part="webid-input-container">
<div class="input-container">
<input part="webid-input" type="text" id="webid" name="webid" placeholder="${this.textPlaceholder}" @input="${(event: InputEvent) => { this.onWebIdChange(event.target as HTMLInputElement); }}"/>
<input part="webid-input" type="url" id="webid" name="webid" placeholder="${this.textPlaceholder}" @input="${(event: InputEvent) => { this.onWebIdChange(event.target as HTMLInputElement); }}"/>
<loading-component ?hidden="${!this.validating}" part="loading"></loading-component>
</div>
${ this.layout === 'vertical' ? alerts : ''}
Expand Down

0 comments on commit 22ff867

Please sign in to comment.