aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorPikuZheng <cba321123@gmail.com>2022-08-30 08:40:01 +0800
committerGitHub <noreply@github.com>2022-08-30 08:40:01 +0800
commitebb62e370ab944dd232bca571ed375f1de9a318b (patch)
tree40bbb35ac615e68c18fce21ef02047bb916f87a0 /ui/src/app/app.component.html
parentupgraded yt-dlp (diff)
downloadmetube-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/src/app/app.component.html')
-rw-r--r--ui/src/app/app.component.html2
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">
bgstack15