Skip to content

Commit fe4f239

Browse files
committed
Restore missing module links (model was undefined)
1 parent 198e7b7 commit fe4f239

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/components/events.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ApiIndexFilter @model={{@model}} @filterData={{@filterData}} as |filteredModel|>
22
{{#each filteredModel.events as |event|}}
3-
<ClassFieldDescription @type="event" @field={{event}} @model={{this.model}} />
3+
<ClassFieldDescription @type="event" @field={{event}} @model={{@model}} />
44
{{/each}}
55
</ApiIndexFilter>

app/components/methods.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ApiIndexFilter @model={{@model}} @filterData={{@filterData}} as |filteredModel|>
22
{{#each filteredModel.methods as |method|}}
3-
<ClassFieldDescription @type="method" @field={{method}} @model={{this.model}} />
3+
<ClassFieldDescription @type="method" @field={{method}} @model={{@model}} />
44
{{/each}}
55
</ApiIndexFilter>

app/components/properties.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ApiIndexFilter @model={{@model}} @filterData={{@filterData}} as |filteredModel|>
22
{{#each filteredModel.properties as |property|}}
3-
<ClassFieldDescription @type="property" @field={{property}} @model={{this.model}} />
3+
<ClassFieldDescription @type="property" @field={{property}} @model={{@model}} />
44
{{/each}}
55
</ApiIndexFilter>

0 commit comments

Comments
 (0)