[Info Bubble] Remove ID

Don't show domain object id in info bubble; this is not
useful information to non-developers. (For developers,
this information can be retrieved from the URL by
navigating to a domain object.) WTD-1252
This commit is contained in:
Victor Woeltjen 2015-09-11 16:29:20 -07:00
parent f17410a85b
commit ecf7f4b235
2 changed files with 0 additions and 5 deletions

View File

@ -78,10 +78,6 @@ define(
{
name: "Type",
value: type && type.getName()
},
{
name: "ID",
value: domainObject.getId()
}
];
}

View File

@ -92,7 +92,6 @@ define(
it("reports generic properties", function () {
var properties = metadata.invoke();
expect(findValue(properties, 'ID')).toEqual("Test id");
expect(findValue(properties, 'Type')).toEqual("Test type");
});