You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.
This is my first time posting so forgive me for bad formatting, I'm having some problems with code tag.
I have seen more minor mistakes in code elsewhere in documentation, I'll make sure to post back when/if I stumble upon them.
The text was updated successfully, but these errors were encountered:
@sombrerox commented on Thu May 24 2018
There is a minor typo in one of the code snippets in dojo/widget-core/documentation, there is a following code snippet there:
`interface ListProperties {
items: {
id: string;
content: string;
highlighted: boolean;
};
}
class List extends WidgetBase {
protected render() {
const { items } = this.properties;
}`
map() is being used on an object, I believe author wanted to define items property as an array of
{
id: string;
content: string;
highlighted: boolean;
}
like:
{
id: string;
content: string;
highlighted: boolean;
}[]
rather than a single instance.
This is my first time posting so forgive me for bad formatting, I'm having some problems with code tag.
I have seen more minor mistakes in code elsewhere in documentation, I'll make sure to post back when/if I stumble upon them.
The text was updated successfully, but these errors were encountered: