Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0377425

Browse filesBrowse files
Fix AureliaSpa TypeScript compile error introduced by newer version of TypeScript
1 parent a3cba50 commit 0377425
Copy full SHA for 0377425

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
  • templates/AureliaSpa/ClientApp/app/components/fetchdata
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎templates/AureliaSpa/ClientApp/app/components/fetchdata/fetchdata.ts‎

Copy file name to clipboardExpand all lines: templates/AureliaSpa/ClientApp/app/components/fetchdata/fetchdata.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class Fetchdata {
1313
http.fetch('/api/SampleData/WeatherForecasts')
1414
.then(result => result.json())
1515
.then(data => {
16-
this.forecasts = data;
16+
this.forecasts = data as any;
1717
});
1818
}
1919
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.