Skip to content

Commit 4298bc5

Browse files
committed
Rename identify selection layer id
1 parent ab8d044 commit 4298bc5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/IdentifyViewer.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class IdentifyViewer extends React.Component {
223223
}
224224
}
225225
componentWillUnmount() {
226-
this.props.removeLayer("identifyslection");
226+
this.props.removeLayer("__identifyviewerhighlight");
227227
}
228228
updateResultTree = () => {
229229
const layers = Object.keys(this.props.identifyResults);
@@ -254,12 +254,12 @@ class IdentifyViewer extends React.Component {
254254
});
255255
if (!isEmpty(results)) {
256256
const layer = {
257-
id: "identifyslection",
257+
id: "__identifyviewerhighlight",
258258
role: LayerRole.SELECTION
259259
};
260260
this.props.addLayerFeatures(layer, results, true);
261261
} else {
262-
this.props.removeLayer("identifyslection");
262+
this.props.removeLayer("__identifyviewerhighlight");
263263
}
264264
};
265265
getExpandedClass = (path, deflt) => {

0 commit comments

Comments
 (0)