summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/field.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/field.js')
-rw-r--r--install/ui/src/freeipa/field.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/field.js b/install/ui/src/freeipa/field.js
index 9654c8051..8a0e3fbdf 100644
--- a/install/ui/src/freeipa/field.js
+++ b/install/ui/src/freeipa/field.js
@@ -21,7 +21,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-define(['dojo/_base/array', './ipa', './jquery'], function(array, IPA, $) {
+
+define(['dojo/_base/array', './ipa', './jquery', './navigation'],
+ function(array, IPA, $, navigation) {
IPA.field = function(spec) {
spec = spec || {};
@@ -735,8 +737,8 @@ IPA.link_field = function(spec) {
that.on_link_clicked = function() {
- IPA.nav.show_entity_page(
- that.other_entity,
+ navigation.show_entity(
+ that.other_entity.name,
'default',
that.other_pkeys());
};