From 6a6606f02cf963d9f7d073e60b0c42f14177ae8a Mon Sep 17 00:00:00 2001 From: e-matthaey Date: Mon, 18 Nov 2024 13:37:14 +0100 Subject: [PATCH] fix: fixed label of movebottom-button in picklist component (#16497) --- src/app/components/picklist/picklist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/picklist/picklist.ts b/src/app/components/picklist/picklist.ts index c23e0a009d4..1646796d0a5 100755 --- a/src/app/components/picklist/picklist.ts +++ b/src/app/components/picklist/picklist.ts @@ -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() {