Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change status bar name #1415

Merged
merged 1 commit into from
Jul 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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