From 1f39421125fa5ca32b61948fc731d92b4c82d9a4 Mon Sep 17 00:00:00 2001 From: Anthony Sena Date: Fri, 8 Nov 2024 16:49:06 -0500 Subject: [PATCH] Change concept set display in patient profile - fixes #2815 --- js/pages/profiles/profile-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/pages/profiles/profile-manager.js b/js/pages/profiles/profile-manager.js index b3fc9f4dc..6affbfbbc 100644 --- a/js/pages/profiles/profile-manager.js +++ b/js/pages/profiles/profile-manager.js @@ -205,7 +205,7 @@ define([ return (_.chain(this.conceptSets()) .map(function (ids, conceptSetName) { if (_.includes(ids, d.conceptId)) - return ' ' + conceptSetName; + return conceptSetName + " (Concept Set)"; }) .compact() .value()