From 297995dcf1a582d5c40529ae02403cba52b30188 Mon Sep 17 00:00:00 2001 From: tsv2013 Date: Fri, 28 Jun 2024 09:10:51 +0300 Subject: [PATCH] Work for #8125 - Button navigation issues - fixed circles should be aligned to survey edges --- src/progress-buttons.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/progress-buttons.ts b/src/progress-buttons.ts index 0afad2842d..cb6c4992d5 100644 --- a/src/progress-buttons.ts +++ b/src/progress-buttons.ts @@ -97,7 +97,7 @@ export class ProgressButtons extends Base { } public get progressWidth(): string { if (this.isFitToSurveyWidth) { - return this.survey.width; + return this.survey.renderedWidth; } return ""; }