Skip to content

Commit

Permalink
Fix Creator V1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Dec 7, 2024
1 parent 92be7aa commit 6f95be4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/survey-core/src/survey-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1028,6 +1028,9 @@ export class SurveyElement<E = any> extends SurveyElementCore implements ISurvey
get paddingRight(): string {
return this.getPropertyValue("paddingRight", undefined, () => this.calcPaddingRight());
}
set paddingRight(val: string) {
this.setPropertyValue("paddingRight", val);
}
protected calcPaddingRight(): string {
return "";
}
Expand Down

0 comments on commit 6f95be4

Please sign in to comment.