diff options
author | Chocobozzz <me@florianbigard.com> | 2022-10-12 14:37:27 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-10-12 14:37:27 +0200 |
commit | d50e8d1aee3d563796ec1e184e094cdc937d0d77 (patch) | |
tree | 923da502db96d8adf2d5551f40e1b480fba34c28 /client/src/app/shared/shared-main/buttons/action-dropdown.component.html | |
parent | 02cb75c7e864fddb8c17a689e9d79012af3e0339 (diff) | |
download | PeerTube-d50e8d1aee3d563796ec1e184e094cdc937d0d77.tar.gz PeerTube-d50e8d1aee3d563796ec1e184e094cdc937d0d77.tar.zst PeerTube-d50e8d1aee3d563796ec1e184e094cdc937d0d77.zip |
Fix action dropdown with query params
Diffstat (limited to 'client/src/app/shared/shared-main/buttons/action-dropdown.component.html')
-rw-r--r-- | client/src/app/shared/shared-main/buttons/action-dropdown.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-main/buttons/action-dropdown.component.html b/client/src/app/shared/shared-main/buttons/action-dropdown.component.html index cdcfb9a48..474baafd7 100644 --- a/client/src/app/shared/shared-main/buttons/action-dropdown.component.html +++ b/client/src/app/shared/shared-main/buttons/action-dropdown.component.html | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | <a | 27 | <a |
28 | *ngIf="action.linkBuilder && !action.isHeader" [ngClass]="{ 'with-icon': !!action.iconName }" | 28 | *ngIf="action.linkBuilder && !action.isHeader" [ngClass]="{ 'with-icon': !!action.iconName }" |
29 | class="dropdown-item" [routerLink]="action.linkBuilder(entry)" [queryParams]="action.queryParamsBuilder(entry)" [title]="action.title || ''" | 29 | class="dropdown-item" [routerLink]="action.linkBuilder(entry)" [queryParams]="getQueryParams(action, entry)" [title]="action.title || ''" |
30 | > | 30 | > |
31 | <ng-container *ngTemplateOutlet="templateActionLabel; context:{ $implicit: action }"></ng-container> | 31 | <ng-container *ngTemplateOutlet="templateActionLabel; context:{ $implicit: action }"></ng-container> |
32 | </a> | 32 | </a> |