Skip to content

Commit ef765d9

Browse files
committed
fix(editor): fix message on first snapshot creation
1 parent 31c9120 commit ef765d9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lib/editor/components/EditorHelpModal.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,13 @@ export default class EditorHelpModal extends Component {
6363
<Body>
6464
{isNewFeed
6565
? <div>
66-
<p>There is no feed loaded in the editor. To begin editing you can either
67-
start from scratch or import an existing version (if a version exists).</p>
66+
{status.snapshotFinished
67+
? <p className='text-center'>Snapshot created successfully!</p>
68+
: <p>
69+
There is no feed loaded in the editor. To begin editing you can either
70+
start from scratch or import an existing version (if a version exists).
71+
</p>
72+
}
6873
{status.snapshotFinished
6974
? <Button
7075
bsStyle='primary'

0 commit comments

Comments
 (0)