From 11dc5f380cc153c6379139dd007aecc6cf746d7c Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 4 Jun 2015 12:30:18 -0700 Subject: [PATCH] [Info Bubble] Use domain object metadata Use domain object metadata to populate the info bubble from the info gesture, WTD-884. --- platform/commonUI/inspect/src/gestures/InfoGesture.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platform/commonUI/inspect/src/gestures/InfoGesture.js b/platform/commonUI/inspect/src/gestures/InfoGesture.js index e79c0b6c75..4ad39fb4e6 100644 --- a/platform/commonUI/inspect/src/gestures/InfoGesture.js +++ b/platform/commonUI/inspect/src/gestures/InfoGesture.js @@ -55,9 +55,7 @@ define( dismissBubble = infoService.display( "info-table", domainObject.getModel().name, - [ - { name: "ID", value: domainObject.getId() } - ], + domainObject.useCapability('metadata'), mousePosition ); pendingBubble = undefined;