Skip to content

Commit

Permalink
fix: fixing __amfChanged function by calling super class
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodek committed Aug 30, 2019
1 parent dda3263 commit 34fb6aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ApiConsoleApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ export class ApiConsoleApp extends ApiConsole {
}, '', url);
}

async __amfChanged() {
async __amfChanged(amf) {
super.__amfChanged(amf);
await this.updateComplete;
if (window.history.state) {
this._onRoute(window.history);
Expand Down

0 comments on commit 34fb6aa

Please sign in to comment.