Skip to content

Commit

Permalink
fix(picklist): change to correct variable
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelG824 committed Dec 23, 2023
1 parent b18e88d commit 532b35c
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 @@ -673,7 +673,7 @@ export class PickList implements AfterViewChecked, AfterContentInit {
}

get moveToSourceAriaLabel() {
return this.allLeftButtonAriaLabel ? this.allLeftButtonAriaLabel : this.config.translation.aria ? this.config.translation.aria.moveToSource : undefined;
return this.leftButtonAriaLabel ? this.leftButtonAriaLabel : this.config.translation.aria ? this.config.translation.aria.moveToSource : undefined;
}

get moveAllToSourceAriaLabel() {
Expand Down

0 comments on commit 532b35c

Please sign in to comment.