fix bug reported by Andy

added new task in the ISSUES.md
This commit is contained in:
Javier Abadia 2014-01-29 09:38:01 +01:00
parent 399cd86ab9
commit eb21ab750c
2 changed files with 2 additions and 1 deletions

View File

@ -17,5 +17,6 @@
- add timestamp to edits
- undo
- attachments
- code comments (for automatic doc generation)
- store the original layers in localStorage?

View File

@ -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;
}