mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
fix: 🐛 Fixed where the Play On {MediaSever} was not appearing for TV Shows
#4303
This commit is contained in:
parent
e8810e82b1
commit
06b60ee9d2
1 changed files with 14 additions and 0 deletions
|
@ -47,6 +47,20 @@
|
||||||
<!--Next to poster-->
|
<!--Next to poster-->
|
||||||
<div class="details-button-container">
|
<div class="details-button-container">
|
||||||
<div class="col-12 media-row">
|
<div class="col-12 media-row">
|
||||||
|
<ng-container *ngIf="tv.fullyAvailable || tv.partlyAvailable">
|
||||||
|
<a id="viewOnPlexButton" *ngIf="tv.plexUrl" href="{{tv.plexUrl}}" mat-raised-button target="_blank" class="btn-spacing viewon-btn plex">
|
||||||
|
{{'Search.ViewOnPlex' | translate}}
|
||||||
|
<i class="far fa-play-circle fa-2x"></i>
|
||||||
|
</a>
|
||||||
|
<a id="viewOnEmbyButton" *ngIf="tv.embyUrl" href="{{tv.embyUrl}}" mat-raised-button target="_blank" class="btn-spacing viewon-btn emby">
|
||||||
|
{{'Search.ViewOnEmby' | translate}}
|
||||||
|
<i class="far fa-play-circle fa-2x"></i>
|
||||||
|
</a>
|
||||||
|
<a id="viewOnJellyfinButton" *ngIf="tv.jellyfinUrl" href="{{tv.jellyfinUrl}}" mat-raised-button target="_blank" class="btn-spacing viewon-btn jellyfin">
|
||||||
|
{{'Search.ViewOnJellyfin' | translate}}
|
||||||
|
<i class="far fa-play-circle fa-2x"></i>
|
||||||
|
</a>
|
||||||
|
</ng-container>
|
||||||
<button *ngIf="!tv.fullyAvailable" mat-raised-button id="requestBtn" class="btn-spacing" color="primary"
|
<button *ngIf="!tv.fullyAvailable" mat-raised-button id="requestBtn" class="btn-spacing" color="primary"
|
||||||
(click)="request()"><i class="fas fa-plus"></i>
|
(click)="request()"><i class="fas fa-plus"></i>
|
||||||
{{ 'Common.Request' | translate }}</button>
|
{{ 'Common.Request' | translate }}</button>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue