fixes bug with slug vs. initial uid in Edit screen

This commit is contained in:
James
2018-12-06 16:55:29 -08:00
parent 41f4981fb8
commit b749211fcb
2 changed files with 3 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import './index.scss';
const EditView = props => {
const isEditing = props.slug ? true : false;
const isEditing = props.uid ? true : false;
const nav = [{
url: `/collections/${props.collection.slug}`,