Skip to content

Commit

Permalink
fix(editor): fix message on first snapshot creation
Browse files Browse the repository at this point in the history
  • Loading branch information
landonreed committed Feb 15, 2018
1 parent 31c9120 commit ef765d9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/editor/components/EditorHelpModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,13 @@ export default class EditorHelpModal extends Component {
<Body>
{isNewFeed
? <div>
<p>There is no feed loaded in the editor. To begin editing you can either
start from scratch or import an existing version (if a version exists).</p>
{status.snapshotFinished
? <p className='text-center'>Snapshot created successfully!</p>
: <p>
There is no feed loaded in the editor. To begin editing you can either
start from scratch or import an existing version (if a version exists).
</p>
}
{status.snapshotFinished
? <Button
bsStyle='primary'
Expand Down

0 comments on commit ef765d9

Please sign in to comment.