Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Guss2017-08-04 19:12:15 +0000
committerDominic Guss2017-08-04 19:25:11 +0000
commit714bed770c1f8df5596b05f5d67f8ac6867eb854 (patch)
treef0a0c338235a2453f3d5982c83be23235b4923f9 /plugins
parentcea03a19f3b90a8bc7c0a276f857bf582d99f402 (diff)
downloadorg.eclipse.osee-714bed770c1f8df5596b05f5d67f8ac6867eb854.tar.gz
org.eclipse.osee-714bed770c1f8df5596b05f5d67f8ac6867eb854.tar.xz
org.eclipse.osee-714bed770c1f8df5596b05f5d67f8ac6867eb854.zip
bug: Fix logic to show data in Text column in dispo controller
Change-Id: Ia0501218c2837e7a864ed115f5673a5a5b8a2589 Signed-off-by: Dominic Guss <Dominic.Guss@boeing.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.web.ui/src/dispo/js/userController.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.web.ui/src/dispo/js/userController.js b/plugins/org.eclipse.osee.web.ui/src/dispo/js/userController.js
index 996a4ec5543..0aea40bbd72 100644
--- a/plugins/org.eclipse.osee.web.ui/src/dispo/js/userController.js
+++ b/plugins/org.eclipse.osee.web.ui/src/dispo/js/userController.js
@@ -317,9 +317,9 @@ app.controller('userController', [
$scope.getTextCoverage = function(annotation) {
if(annotation.isLeaf) {
- return "";
- } else {
return annotation.customerNotes;
+ } else {
+ return "";
}
}

Back to the top