mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 02:05:25 +01:00
'id' is not guaranteed to be unique, see <https://github.com/maputnik/editor/pull/610/files#r372521304>
This commit is contained in:
parent
5b3d579f87
commit
c714e23d79
1 changed files with 1 additions and 2 deletions
|
@ -22,8 +22,7 @@ function renderProperties(feature) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderFeature(feature, idx) {
|
function renderFeature(feature, idx) {
|
||||||
const uniqueKey = feature.hasOwnProperty('id') ? feature.id : idx;
|
return <div key={`${feature.sourceLayer}-${idx}`}>
|
||||||
return <div key={`${feature.sourceLayer}-${uniqueKey}`}>
|
|
||||||
<div className="maputnik-popup-layer-id">{feature.layer['source-layer']}{feature.inspectModeCounter && <span> × {feature.inspectModeCounter}</span>}</div>
|
<div className="maputnik-popup-layer-id">{feature.layer['source-layer']}{feature.inspectModeCounter && <span> × {feature.inspectModeCounter}</span>}</div>
|
||||||
<InputBlock key={"property-type"} label={"$type"}>
|
<InputBlock key={"property-type"} label={"$type"}>
|
||||||
<StringInput value={feature.geometry.type} style={{backgroundColor: 'transparent'}} />
|
<StringInput value={feature.geometry.type} style={{backgroundColor: 'transparent'}} />
|
||||||
|
|
Loading…
Reference in a new issue