Skip to content

Commit

Permalink
Merge pull request #240 from ant-media/add-copy-vod-url
Browse files Browse the repository at this point in the history
Fix vod context overflow
  • Loading branch information
mekya committed Jan 8, 2024
2 parents 96c4903 + bdac6ed commit fbe86a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/app.page/app.page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ <h4 class="card-title text-left" i18n="@@newLiveStreamCardTitle">
<br>
<div class="mat-container mat-elevation-z0">

<mat-table [dataSource]="dataSourceVod" matSort
<mat-table [dataSource]="dataSourceVod" matSort style="overflow: visible !important;"
(matSortChange)="sortVodList($event)">

<!-- Checkbox Column -->
Expand Down Expand Up @@ -952,12 +952,13 @@ <h4 class="card-title text-left" i18n="@@newLiveStreamCardTitle">
<mat-header-cell [ngClass]="'action-column'" *matHeaderCellDef class="text-right"> Actions
</mat-header-cell>


<mat-cell style="overflow: visible !important; "
[ngClass]="'action-column'" *matCellDef="let row"
class="text-right">

<div style="font-size: 1.1em">
<ul class="nav navbar-right" >
<ul class="nav navbar-right" >
<li (click)="contextDropdownClicked()" class="dropdown">
<a href="#" class="dropdown-toggle btn-magnify"
data-toggle="dropdown">
Expand Down

0 comments on commit fbe86a1

Please sign in to comment.