Merge pull request #304 from CatalystCode/iss292

Removed code editor loading screen for empty string
This commit is contained in:
Mor Shemesh 2017-08-17 10:48:17 +03:00 коммит произвёл GitHub
Родитель 9c1a97bf9d 6995450c50
Коммит 5d37d9eda2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -162,7 +162,7 @@ export default class Editor extends React.PureComponent<IEditorProps, IEditorSta
];
const actions = !value ? null : actionButtons;
const content = !value ? this.renderLoading() : this.renderEditor(value, theme);
const content = value !== null ? this.renderEditor(value, theme) : this.renderLoading();
return (
<Dialog