diff options
author | PikuZheng <cba321123@gmail.com> | 2022-08-30 08:40:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 08:40:01 +0800 |
commit | ebb62e370ab944dd232bca571ed375f1de9a318b (patch) | |
tree | 40bbb35ac615e68c18fce21ef02047bb916f87a0 /ui | |
parent | upgraded yt-dlp (diff) | |
download | metube-ebb62e370ab944dd232bca571ed375f1de9a318b.tar.gz metube-ebb62e370ab944dd232bca571ed375f1de9a318b.tar.bz2 metube-ebb62e370ab944dd232bca571ed375f1de9a318b.zip |
add autocomplete="off" spellcheck="false"
#175
it's also useful on android
Diffstat (limited to 'ui')
-rw-r--r-- | ui/src/app/app.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html index 74425aa..e96ee0d 100644 --- a/ui/src/app/app.component.html +++ b/ui/src/app/app.component.html @@ -26,7 +26,7 @@ <div class="container add-url-box"> <div class="row"> <div class="col add-url-component input-group"> - <input type="text" class="form-control" placeholder="Video or playlist URL" name="addUrl" [(ngModel)]="addUrl" [disabled]="addInProgress || downloads.loading"> + <input type="text" autocomplete="off" spellcheck="false" class="form-control" placeholder="Video or playlist URL" name="addUrl" [(ngModel)]="addUrl" [disabled]="addInProgress || downloads.loading"> </div> </div> <div class="row"> |