|
@@ -397,8 +397,9 @@ const Item: FC<ItemProps> = (props: ItemProps) => {
|
|
|
>
|
|
>
|
|
|
<li
|
|
<li
|
|
|
ref={(c) => { drag(c); drop(c) }}
|
|
ref={(c) => { drag(c); drop(c) }}
|
|
|
- className={`list-group-item list-group-item-action border-0 py-0 pr-3 d-flex align-items-center ${page.isTarget ? 'grw-pagetree-is-target' : ''}`}
|
|
|
|
|
- id={page.isTarget ? 'grw-pagetree-is-target' : `grw-pagetree-list-${page._id}`}
|
|
|
|
|
|
|
+ className={`list-group-item list-group-item-action border-0 py-0 pr-3 d-flex align-items-center
|
|
|
|
|
+ ${page.isTarget ? 'grw-pagetree-current-page-item' : ''}`}
|
|
|
|
|
+ id={page.isTarget ? 'grw-pagetree-current-page-item' : `grw-pagetree-list-${page._id}`}
|
|
|
>
|
|
>
|
|
|
<div className="grw-triangle-container d-flex justify-content-center">
|
|
<div className="grw-triangle-container d-flex justify-content-center">
|
|
|
{hasDescendants && (
|
|
{hasDescendants && (
|