aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2019-12-06 14:16:19 +0200
committerAlex <alexta69@gmail.com>2019-12-06 14:37:08 +0200
commit91cee0339a8b41014fc69a994e7eb719ad029d3a (patch)
tree256ba10d705eb2cb24c0914e5c84b13d797e334d /ui/src/app/app.component.html
parentupdate README with full screenshot URL (diff)
downloadmetube-91cee0339a8b41014fc69a994e7eb719ad029d3a.tar.gz
metube-91cee0339a8b41014fc69a994e7eb719ad029d3a.tar.bz2
metube-91cee0339a8b41014fc69a994e7eb719ad029d3a.zip
fix broken PREFIX_URL feature
Diffstat (limited to 'ui/src/app/app.component.html')
-rw-r--r--ui/src/app/app.component.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index b05aee7..9e927ed 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -27,8 +27,10 @@
</div>
</form>
- <p *ngIf="downloads.loading">Loading...</p>
- <div class="metube-section-header">Downloading</div>
+ <div *ngIf="downloads.loading" class="alert alert-info" role="alert">
+ Connecting to server...
+ </div>
+ <div class="metube-section-header">Downloading</div>
<table class="table">
<thead>
<tr>
bgstack15