Skip to content

Commit

Permalink
[VSCODE] Change status bar name to Apollo (apollographql#1415)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeDawkins authored and essaji committed Aug 25, 2019
1 parent 635f573 commit e493341
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- `apollo-tools`
- <First `apollo-tools` related entry goes here>
- `vscode-apollo`
- <First `vscode-apollo` related entry goes here>
- Changed the status bar title to be "Apollo" to save space.

## `apollo@2.16.0`, `apollo-codegen-swift@0.34.0`, `apollo-language-server@1.13.0`, `apollo-tools@0.4.0`, `vscode-apollo@1.8.0`

Expand Down
6 changes: 3 additions & 3 deletions packages/vscode-apollo/src/statusBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ interface StateChangeInput extends LoadingInput {
export default class ApolloStatusBar {
public statusBarItem = window.createStatusBarItem(StatusBarAlignment.Right);

static loadingStateText = "Apollo GraphQL $(rss)";
static loadedStateText = "ApolloGraphQL $(rocket)";
static warningText = "Apollo GraphQL $(alert)";
static loadingStateText = "Apollo $(rss)";
static loadedStateText = "Apollo $(rocket)";
static warningText = "Apollo $(alert)";

constructor({ hasActiveTextEditor }: LoadingInput) {
this.showLoadingState({ hasActiveTextEditor });
Expand Down

0 comments on commit e493341

Please sign in to comment.