We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 260aff7 commit 7563d0eCopy full SHA for 7563d0e
apps/builder/app/builder/features/style-panel/shared/configs.ts
@@ -54,7 +54,8 @@ export const styleConfigByName = (propertyName: StyleProperty): StyleConfig => {
54
55
const keywords = keywordValues[property] || [];
56
const label = humanizeString(property);
57
- const propertyData = properties[property];
+ // property data does not exist for css custom properties
58
+ const propertyData = properties[property] ?? {};
59
60
const result = {
61
label,
0 commit comments