diff --git a/src/components/Editor/EditorToolbar.js b/src/components/Editor/EditorToolbar.js
index e0d2079d..d5711a7e 100644
--- a/src/components/Editor/EditorToolbar.js
+++ b/src/components/Editor/EditorToolbar.js
@@ -332,6 +332,7 @@ export class EditorToolbar extends React.Component {
onLogoutClick,
t,
editorBackLink,
+ isNewEntry
} = this.props;
return (
@@ -344,7 +345,7 @@ export class EditorToolbar extends React.Component {
collectionLabel: collection.get('label'),
})}
- {hasChanged ? (
+ {isNewEntry || hasChanged ? (
{t('editor.editorToolbar.unsavedChanges')}
) : (
{t('editor.editorToolbar.changesSaved')}