Merge pull request #9459 from ArtemDzhereleiko/AD/bug-fix/widget-settings/border-radius

Fixed advanced widget setting boarder radius property
This commit is contained in:
Igor Kulikov 2023-10-23 17:33:44 +03:00 committed by GitHub
commit 353beffc1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -479,7 +479,7 @@ export class DashboardWidget implements GridsterItem, IDashboardWidget {
backgroundColor: this.backgroundColor,
padding: this.padding,
margin: this.margin,
borderRadius: this.borderRadius};
borderRadius: this.borderRadius || 'unset' };
if (this.widget.config.widgetStyle) {
this.style = {...this.style, ...this.widget.config.widgetStyle};
}