Commit 61bdc3bf authored by Michael Lange's avatar Michael Lange
Browse files

Sidestep a transpilation bug.

Default params don't make it into arguments which were being splatted
into the call to super.
parent a5da73da
Showing with 1 addition and 1 deletion
+1 -1
......@@ -42,7 +42,7 @@ export default RESTAdapter.extend({
if (region) {
options.data.region = region;
}
return this._super(...arguments);
return this._super(url, type, options);
},
// In order to remove stale records from the store, findHasMany has to unload
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment