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鈥檒l occasionally send you account related emails.
Already on GitHub? Sign in to your account
style fixes: editor header #5228
Conversation
frontend/src/Editor/Editor.jsx
Outdated
| saveError={this.state.saveError} | ||
| isVersionReleased={this.isVersionReleased} | ||
| onNameChanged={this.onNameChanged} | ||
| currentAppEnvironmentId={this.state.currentAppEnvironmentId} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
currentAppEnvironmentId prop can be removed
frontend/src/Editor/Editor.jsx
Outdated
| globalSettingsChanged={this.globalSettingsChanged} | ||
| appDefinition={appDefinition} | ||
| toggleAppMaintenance={this.toggleAppMaintenance} | ||
| config={config} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can directly use import config from 'config'; inside <EditorHeader />?
frontend/src/_components/AppLogo.jsx
Outdated
| <> | ||
| <img src={url} height={26} /> | ||
| </> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <> | |
| <img src={url} height={26} /> | |
| </> | |
| <img src={url} height={26} /> |


No description provided.