From 8a1352d14935ea0676035c085f87e4c8caba55d6 Mon Sep 17 00:00:00 2001 From: Dhruwang Date: Tue, 18 Feb 2025 10:41:27 +0530 Subject: [PATCH 1/3] add spacing between labels --- packages/surveys/src/components/questions/nps-question.tsx | 2 +- packages/surveys/src/components/questions/rating-question.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/surveys/src/components/questions/nps-question.tsx b/packages/surveys/src/components/questions/nps-question.tsx index bf0db74b74..784c8a2b14 100644 --- a/packages/surveys/src/components/questions/nps-question.tsx +++ b/packages/surveys/src/components/questions/nps-question.tsx @@ -144,7 +144,7 @@ export function NPSQuestion({ ); })} -
+

{getLocalizedValue(question.lowerLabel, languageCode)}

{getLocalizedValue(question.upperLabel, languageCode)}

diff --git a/packages/surveys/src/components/questions/rating-question.tsx b/packages/surveys/src/components/questions/rating-question.tsx index fd2a23c451..ce64eeca43 100644 --- a/packages/surveys/src/components/questions/rating-question.tsx +++ b/packages/surveys/src/components/questions/rating-question.tsx @@ -246,7 +246,7 @@ export function RatingQuestion({ ))}
-
+

{getLocalizedValue(question.lowerLabel, languageCode)}

From 933755b81deb6158624c59cb5c6d101a4e3133f5 Mon Sep 17 00:00:00 2001 From: Dhruwang Date: Tue, 18 Feb 2025 10:56:06 +0530 Subject: [PATCH 2/3] fix workflow --- .github/workflows/pr.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ae703a4e40..ce7664360e 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -35,11 +35,6 @@ jobs: uses: ./.github/workflows/build-web.yml secrets: inherit - docs: - name: Build Docs - uses: ./.github/workflows/build-docs.yml - secrets: inherit - e2e-test: name: Run E2E Tests uses: ./.github/workflows/e2e.yml From 33a09874c1970ddc80e86a631d6f844a51acbdec Mon Sep 17 00:00:00 2001 From: Dhruwang Date: Tue, 18 Feb 2025 10:57:02 +0530 Subject: [PATCH 3/3] fix: workflow --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index ce7664360e..6da3038d27 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -42,7 +42,7 @@ jobs: required: name: PR Check Summary - needs: [lint, test, build, e2e-test, docs] + needs: [lint, test, build, e2e-test] if: always() runs-on: ubuntu-latest permissions: