diff --git a/CHANGELOG.md b/CHANGELOG.md index df7f9259b..e1c614eab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [1860](https://github.com/microsoft/BotFramework-Emulator/pull/1860) - [1861](https://github.com/microsoft/BotFramework-Emulator/pull/1861) - [1862](https://github.com/microsoft/BotFramework-Emulator/pull/1862) + - [1864](https://github.com/microsoft/BotFramework-Emulator/pull/1864) - [client] Fixed an issue with the transcripts path input inside of the resource settings dialog in PR [1836](https://github.com/microsoft/BotFramework-Emulator/pull/1836) diff --git a/packages/app/client/src/ui/editor/emulator/logPanel/logPanel.tsx b/packages/app/client/src/ui/editor/emulator/logPanel/logPanel.tsx index 524676b56..782ccf1c3 100644 --- a/packages/app/client/src/ui/editor/emulator/logPanel/logPanel.tsx +++ b/packages/app/client/src/ui/editor/emulator/logPanel/logPanel.tsx @@ -45,7 +45,7 @@ interface LogPanelProps { export default class LogPanel extends React.Component { public render() { return ( -
+
diff --git a/packages/app/client/src/ui/editor/emulator/parts/inspector/inspector.tsx b/packages/app/client/src/ui/editor/emulator/parts/inspector/inspector.tsx index 405a2bf66..4e2d7e88b 100644 --- a/packages/app/client/src/ui/editor/emulator/parts/inspector/inspector.tsx +++ b/packages/app/client/src/ui/editor/emulator/parts/inspector/inspector.tsx @@ -200,7 +200,7 @@ export class Inspector extends React.Component { public render() { if (this.state.inspector && this.state.inspectObj) { return ( -
+
s && s.length).join(' - ')}> {this.renderAccessoryButtons()} @@ -214,7 +214,7 @@ export class Inspector extends React.Component { } else { return ( // No inspector was found. -
+
diff --git a/packages/app/client/src/ui/shell/main.tsx b/packages/app/client/src/ui/shell/main.tsx index 0cb525670..c403e60fc 100644 --- a/packages/app/client/src/ui/shell/main.tsx +++ b/packages/app/client/src/ui/shell/main.tsx @@ -120,7 +120,7 @@ export class Main extends React.Component { {!this.props.presentationModeEnabled && ( )} -
+
{ > {workbenchChildren} -
+
{!this.props.presentationModeEnabled && } diff --git a/packages/app/client/src/ui/shell/mdi/mdi.tsx b/packages/app/client/src/ui/shell/mdi/mdi.tsx index 5e9542b47..afd7873b5 100644 --- a/packages/app/client/src/ui/shell/mdi/mdi.tsx +++ b/packages/app/client/src/ui/shell/mdi/mdi.tsx @@ -40,11 +40,11 @@ import { TabBarContainer } from './tabBar'; export class MDIComponent extends React.Component { public render(): React.ReactNode { - const { presentationModeEnabled } = this.props; + const { presentationModeEnabled, owningEditor = '' } = this.props; return ( -
- {!presentationModeEnabled && } - +
+ {!presentationModeEnabled && } +
); }