fix: inconsistent style of path with/without index
This commit is contained in:
@@ -91,7 +91,9 @@ const PathNode = ({ path, isRoot = false, onDelete, onSave }) => {
|
|||||||
<Link to={`/markdown/${indexMarkdownId}`} className="is-link">
|
<Link to={`/markdown/${indexMarkdownId}`} className="is-link">
|
||||||
{path.name}
|
{path.name}
|
||||||
</Link>
|
</Link>
|
||||||
) : path.name
|
) : (
|
||||||
|
<a className="is-link">{path.name}</a>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user