Skip to content

Commit

Permalink
fix: Add missing type in pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPalafox committed Jul 9, 2023
1 parent 4086cff commit 2efafbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { SortOrderType } from '../../../types/sort'
name: 'appPanelsSortByAriaLabel',
})
export class AppPanelsSortByAriaLabelPipe implements PipeTransform {
transform(sortBy: SortOrderType): string {
transform(sortBy: SortOrderType, type: string): string {
switch (sortBy) {
case 'title':
return getTitleLabelByType(type);
Expand Down

0 comments on commit 2efafbc

Please sign in to comment.