diff --git a/lib/edit/ISSUES.md b/lib/edit/ISSUES.md index 14a793b..558e889 100644 --- a/lib/edit/ISSUES.md +++ b/lib/edit/ISSUES.md @@ -17,5 +17,6 @@ - add timestamp to edits - undo - attachments +- code comments (for automatic doc generation) - store the original layers in localStorage? diff --git a/lib/edit/editsStore.js b/lib/edit/editsStore.js index fc34874..3e9a967 100644 --- a/lib/edit/editsStore.js +++ b/lib/edit/editsStore.js @@ -139,9 +139,9 @@ define(["esri/graphic"], function(Graphic) readableGraphic = graphic.geometry.type; break; case this.UPDATE: - case this.DELETE: readableGraphic = graphic.geometry.type + " [id=" + graphic.attributes.objectid + "]"; // jabadia: objectid name hardcoded break; + case this.DELETE: readableGraphic = graphic.geometry.type + " [id=" + graphic.attributes.objectid + "]"; break; }