Skip to content

Commit

Permalink
Fix default value for web components prop table docs (#9655)
Browse files Browse the repository at this point in the history
Fix default value for web components prop table docs
  • Loading branch information
ndelangen authored and shilman committed Feb 2, 2020
1 parent 29ab2db commit bce8aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/docs/src/frameworks/web-components/config.js
Expand Up @@ -11,7 +11,7 @@ function mapData(data) {
type: { summary: item.type },
required: '',
description: item.description,
defaultValue: { summary: item.defaultValue },
defaultValue: { summary: item.default !== undefined ? item.default : item.defaultValue },
}));
}

Expand Down

0 comments on commit bce8aa4

Please sign in to comment.