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 b8a341c commit 65e58d7Copy full SHA for 65e58d7
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