mirror of
https://github.com/nasa/openmct.git
synced 2025-05-11 13:03:03 +00:00
[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:
parent
f17410a85b
commit
ecf7f4b235
@ -78,10 +78,6 @@ define(
|
|||||||
{
|
{
|
||||||
name: "Type",
|
name: "Type",
|
||||||
value: type && type.getName()
|
value: type && type.getName()
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "ID",
|
|
||||||
value: domainObject.getId()
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,6 @@ define(
|
|||||||
|
|
||||||
it("reports generic properties", function () {
|
it("reports generic properties", function () {
|
||||||
var properties = metadata.invoke();
|
var properties = metadata.invoke();
|
||||||
expect(findValue(properties, 'ID')).toEqual("Test id");
|
|
||||||
expect(findValue(properties, 'Type')).toEqual("Test type");
|
expect(findValue(properties, 'Type')).toEqual("Test type");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user