Skip to content

Commit

Permalink
Merge pull request #279 from lardbit/verbage-updates
Browse files Browse the repository at this point in the history
Verbiage & style updates
  • Loading branch information
lardbit authored Mar 8, 2024
2 parents 87cb6dc + 2199ccd commit 3037cb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/frontend/src/app/media/media-movie.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div *ngIf="!isLoading">
<div class="card-header d-flex justify-content-between">
<h3 class="media-title">{{ result.title }}</h3>
<span *ngIf="watchMovie?.collected" class="text-success" [ngbPopover]="watchMovie.collected_date"><span class="oi oi-circle-check"></span> Downloaded</span>
<span *ngIf="watchMovie?.collected" class="bg-success px-2 py-2 rounded-5 text-dark" [ngbPopover]="watchMovie.collected_date"><span class="oi oi-circle-check"></span> Downloaded</span>
</div>
<div class="card-body">
<ul #nav="ngbNav" ngbNav [(activeId)]="activeNav" class="nav-tabs">
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/app/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
<span>Video Validation</span>
</div>
<div class="card-body">
<div><span class="badge bg-danger">Experimental</span> Automatically detect, blacklist, and retry <strong>invalid</strong> video downloads.</div>
<div>Automatically detect, blacklist, and retry <strong>invalid</strong> video downloads.</div>
<div><span class="badge bg-dark">Note</span> This will also reject any bundled downloads (e.g. rar, tar, zip)</div>
<div class="form-check mt-2">
<input class="form-check-input" type="radio" [value]="true" formControlName="enable_video_detection" id="video-detection-true">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="position-relative table-responsive">
<ngx-loading [show]="isSaving || isFetchingInitialTorrents"></ngx-loading>
<div class="alert alert-info m-3" *ngIf="results.length === 0">No results yet ...</div>
<div class="alert alert-info m-3" *ngIf="results.length === 0">Still fetching results ...</div>
<table class="table table-striped table-responsive table-dark" *ngIf="results.length > 0">
<thead>
<tr>
Expand Down

0 comments on commit 3037cb2

Please sign in to comment.