This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit cb4f0733525e8770616a7617a3f1a98a3ddb0963 Author: Léo Kaufmann <kaufmann@codelutin.com> Date: Fri Jan 15 22:02:19 2016 +0100 Eviter les paranthèses vides lorsqu'un utilisateur n'a pas d'organisation --- coselmar-ui/src/main/webapp/css/coselmar.css | 1 + coselmar-ui/src/main/webapp/views/questions/viewquestion.html | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/coselmar-ui/src/main/webapp/css/coselmar.css b/coselmar-ui/src/main/webapp/css/coselmar.css index 002de35..ba7845d 100644 --- a/coselmar-ui/src/main/webapp/css/coselmar.css +++ b/coselmar-ui/src/main/webapp/css/coselmar.css @@ -464,6 +464,7 @@ a.dropdown-toggle:hover .caret { border: 0; color: #888; font-weight: normal; + vertical-align: middle; } .table tbody tr td { diff --git a/coselmar-ui/src/main/webapp/views/questions/viewquestion.html b/coselmar-ui/src/main/webapp/views/questions/viewquestion.html index 6036320..cddf909 100644 --- a/coselmar-ui/src/main/webapp/views/questions/viewquestion.html +++ b/coselmar-ui/src/main/webapp/views/questions/viewquestion.html @@ -176,7 +176,7 @@ <dd> <ul> <li ng-if="question.supervisors" ng-repeat="supervisor in question.supervisors"> - <a href="#/users/{{supervisor.id}}" target="_blank">{{supervisor.firstName}} {{supervisor.name}} ({{supervisor.organization}})</a> + <a href="#/users/{{supervisor.id}}" target="_blank">{{supervisor.firstName}} {{supervisor.name}}<span ng-if="supervisor.organization"> ({{supervisor.organization}})</span></a> </li> </ul> </dd> @@ -186,7 +186,7 @@ <dd> <ul> <li ng-if="question.participants" ng-repeat="participant in question.participants"> - <a href="#/users/{{participant.id}}" target="_blank">{{participant.firstName}} {{participant.name}} ({{participant.organization}})</a> + <a href="#/users/{{participant.id}}" target="_blank">{{participant.firstName}} {{participant.name}}<span ng-if="participant.organization"> ({{participant.organization}})</span></a> </li> <li ng-if="question.externalExperts" ng-repeat="participant in question.externalExperts"> {{participant}} @@ -198,7 +198,7 @@ <dd> <ul> <li ng-if="question.clients" ng-repeat="client in question.clients"> - <a href="#/users/{{client.id}}" target="_blank">{{client.firstName}} {{client.name}} ({{client.organization}})</a> + <a href="#/users/{{client.id}}" target="_blank">{{client.firstName}} {{client.name}}<span ng-if="client.organization"> ({{client.organization}})</span></a> </li> </ul> </dd> @@ -210,7 +210,7 @@ <dd> <ul> <li ng-if="question.contributors" ng-repeat="contributor in question.contributors"> - <a href="#/users/{{contributor.id}}" target="_blank">{{contributor.firstName}} {{contributor.name}} ({{contributor.organization}})</a> + <a href="#/users/{{contributor.id}}" target="_blank">{{contributor.firstName}} {{contributor.name}}<span ng-if="contributor.organization"> ({{contributor.organization}})</span></a> </li> </ul> </dd> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.