Skip to content

Commit

Permalink
fix: fixed label of movebottom-button in picklist component (#16497)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-matthaey authored Nov 18, 2024
1 parent 455f811 commit 6a6606f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/picklist/picklist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ export class PickList implements AfterViewChecked, AfterContentInit {
}

get moveBottomAriaLabel() {
return this.bottomButtonAriaLabel ? this.bottomButtonAriaLabel : this.config.translation.aria ? this.config.translation.aria.moveDown : undefined;
return this.bottomButtonAriaLabel ? this.bottomButtonAriaLabel : this.config.translation.aria ? this.config.translation.aria.moveBottom : undefined;
}

get moveToTargetAriaLabel() {
Expand Down

0 comments on commit 6a6606f

Please sign in to comment.