diff options
author | bobzel <zzzman@gmail.com> | 2023-09-11 22:58:56 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-11 22:58:56 -0400 |
commit | 3a048ae3acbbf63611bfbb7cded772fc3decd526 (patch) | |
tree | 810e69e2c1e96a4fa38d638194f4e9f5f30a80df /src/client/views/nodes/MapBox/MapBox.tsx | |
parent | 507cdb40d5553c8a325ddb158b9a1f4e5672ac15 (diff) |
usercolor cleanup
Diffstat (limited to 'src/client/views/nodes/MapBox/MapBox.tsx')
-rw-r--r-- | src/client/views/nodes/MapBox/MapBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/MapBox/MapBox.tsx b/src/client/views/nodes/MapBox/MapBox.tsx index 01810fa00..81ca3ff36 100644 --- a/src/client/views/nodes/MapBox/MapBox.tsx +++ b/src/client/views/nodes/MapBox/MapBox.tsx @@ -760,8 +760,9 @@ export class MapBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps ? null : this.allAnnotations .filter(anno => !anno.layout_unrendered) - .map(pushpin => ( + .map((pushpin, i) => ( <DocumentView + key={i} {...this.props} renderDepth={this.props.renderDepth + 1} Document={pushpin} |