Skip to content

Commit

Permalink
Hid services pane by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Jan 23, 2020
1 parent 36b01c0 commit 91a2432
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [client/main] Added Ngrok Debugger UI in PR [2032](https://github.com/microsoft/BotFramework-Emulator/pull/2032)
- [client/main] Changed conversation infrastructure to use Web Sockets to communicate with Web Chat in PR [2034](https://github.com/microsoft/BotFramework-Emulator/pull/2034)

## Changed
- [client] Hid services pane by default in PR [2059](https://github.com/microsoft/BotFramework-Emulator/pull/2059)

## v4.7.0 - 2019 - 12 - 13
## Fixed
- [client] Added an empty state for the recent bots submenu in the app menu for Windows in PR [1945](https://github.com/microsoft/BotFramework-Emulator/pull/1945)
Expand Down
2 changes: 1 addition & 1 deletion packages/app/client/src/state/reducers/explorer.ts
Expand Up @@ -46,7 +46,7 @@ export interface ExplorerState {
export declare type SortCriteria = string;

const DEFAULT_STATE: ExplorerState = {
showing: true,
showing: false,
sortSelectionByPanelId: { [CONNECTED_SERVICES_PANEL_ID]: 'name' },
};

Expand Down
2 changes: 1 addition & 1 deletion packages/app/main/src/state/reducers/explorer.ts
Expand Up @@ -46,7 +46,7 @@ export interface ExplorerState {
export declare type SortCriteria = string;

const DEFAULT_STATE: ExplorerState = {
showing: true,
showing: false,
sortSelectionByPanelId: { [CONNECTED_SERVICES_PANEL_ID]: 'name' },
};

Expand Down

0 comments on commit 91a2432

Please sign in to comment.