From 83b1f7e91a4fbb04e5ba5c7fde154d934e3b1f46 Mon Sep 17 00:00:00 2001 From: Julia Damerow Date: Thu, 14 Jul 2016 11:39:44 -0700 Subject: [PATCH] [bugfix] concept name now shown in details modal. --- .../WEB-INF/views/auth/concepts/ConceptListConceptsView.jsp | 1 + 1 file changed, 1 insertion(+) diff --git a/Conceptpower+Spring/src/main/webapp/WEB-INF/views/auth/concepts/ConceptListConceptsView.jsp b/Conceptpower+Spring/src/main/webapp/WEB-INF/views/auth/concepts/ConceptListConceptsView.jsp index 477817fa7..9047df801 100644 --- a/Conceptpower+Spring/src/main/webapp/WEB-INF/views/auth/concepts/ConceptListConceptsView.jsp +++ b/Conceptpower+Spring/src/main/webapp/WEB-INF/views/auth/concepts/ConceptListConceptsView.jsp @@ -33,6 +33,7 @@ }, success : function(details) { details = $.parseJSON(details); + $("#conceptTerm").text(details.name); $("#detailsid").text(details.id); $("#detailsuri").text(details.uri); $("#detailswordnetid").text(details.wordnetId);