aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2022-09-01 15:27:00 +0300
committerGitHub <noreply@github.com>2022-09-01 15:27:00 +0300
commit06349dcaf08644f1fe533d582ad2c3063e17c39b (patch)
tree65d5e43f58e8baa0511e93106fdefa2abfe44351
parentMerge pull request #148 from 1RandomDev/download-thumbnail (diff)
parentadd autocomplete="off" spellcheck="false" (diff)
downloadmetube-06349dcaf08644f1fe533d582ad2c3063e17c39b.tar.gz
metube-06349dcaf08644f1fe533d582ad2c3063e17c39b.tar.bz2
metube-06349dcaf08644f1fe533d582ad2c3063e17c39b.zip
Merge pull request #176 from PikuZheng/patch-2
add autocomplete="off" spellcheck="false" (closes #175)
-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