Skip to content

Commit

Permalink
Upgraded to v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Dec 17, 2017
1 parent 4a6467e commit 5832ac4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chrome-ext-files/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Altair GraphQL Client",
"short_name": "Altair",
"description": "The only graphQL client you'll ever need.",
"version": "1.5.8",
"version": "1.6.0",
"icons": {
"16": "assets/img/altair_logo_128.png",
"48": "assets/img/altair_logo_128.png",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "altair",
"version": "1.5.8",
"version": "1.6.0",
"license": "MIT",
"author": "Samuel Imolorhe <[email protected]> (https://sirmuel.design/)",
"description": "The best graphQL client you will ever need",
Expand Down
4 changes: 3 additions & 1 deletion src/app/containers/window/window.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ export class WindowComponent implements OnInit {
this.subscriptionUrl = data.query.subscriptionUrl;
this.isSubscribed = data.query.isSubscribed;
this.subscriptionResponses = data.query.subscriptionResponseList;
this.historyList = data.history.list;
if (data.history) { // Remove condition when all users have upgraded to v1.6.0+
this.historyList = data.history.list;
}

this.showEditorAlert = data.query.showEditorAlert;
this.editorAlertMessage = data.query.editorAlertMessage;
Expand Down

0 comments on commit 5832ac4

Please sign in to comment.