From 3ee2dca84a711f58fa47c86c247ef96cf7e2444b Mon Sep 17 00:00:00 2001 From: Allen Gilliland <agilliland@gmail.com> Date: Fri, 30 Oct 2015 15:19:52 -0700 Subject: [PATCH] provide an indication of the FK field that was used to determine the connection on object details relationships pane. --- .../src/query_builder/QueryVisualizationObjectDetailTable.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/query_builder/QueryVisualizationObjectDetailTable.jsx b/frontend/src/query_builder/QueryVisualizationObjectDetailTable.jsx index 6c7ae9a0a4c..97276eb7440 100644 --- a/frontend/src/query_builder/QueryVisualizationObjectDetailTable.jsx +++ b/frontend/src/query_builder/QueryVisualizationObjectDetailTable.jsx @@ -134,7 +134,7 @@ export default class QueryVisualizationObjectDetailTable extends Component { var info = ( <div> <h2>{fkCount}</h2> - <h5 className="block">{relationName}</h5> + <h5 className="block">{relationName} (via {fk.origin.display_name})</h5> </div> ); var fkReference; -- GitLab