Skip to content
New issue

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

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

Already on GitHub? # to your account

Hid services pane by default. #2059

Merged
merged 1 commit into from
Jan 23, 2020
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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)
tonyanziano marked this conversation as resolved.
Show resolved Hide resolved

## 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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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