Skip to content

Commit

Permalink
docs: fix broken link and empty object as default value (SAP#10486)
Browse files Browse the repository at this point in the history
Fixes: SAP#10480
  • Loading branch information
nnaydenow authored Jan 7, 2025
1 parent ea2ed92 commit 2943480
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/base/src/CustomElementsRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const displayFailedRegistrations = () => {
}
});

message = `${message}\n\nTo prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/03-scoping.md.`;
message = `${message}\n\nTo prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/06-scoping.md.`;

console.warn(message); // eslint-disable-line
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ No properties available for this component.`
|-------------|---|
| Description | ${processDescription(property.description)} |
| Type | ${processType(property.type)} |
| Default | ${property.default} |`
| Default | ${property.default.replace("{}", "\\{\\}")} |`


if (property.readonly) {
Expand Down

0 comments on commit 2943480

Please sign in to comment.