Skip to content

Commit

Permalink
feat(portal): Display user display name in release modal
Browse files Browse the repository at this point in the history
  • Loading branch information
gucovip committed Dec 10, 2024
1 parent 28d2898 commit 8be9b56
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h4 class="modal-title" ng-show="toReleaseNamespace.isBranch && toReleaseNamespa
<apollodiff old-str="config.oldValue" new-str="config.newValue" apollo-id="'diffWithPublished:'+config.item.key"></apollodiff>
</td>
<td width="15%">
<span class="block" ng-bind="config.item.dataChangeLastModifiedBy"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedByDisplayName + '(' + config.item.dataChangeLastModifiedBy + ')'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'HH:mm:ss'"></span>
</td>
Expand Down Expand Up @@ -163,7 +163,7 @@ <h4 class="modal-title" ng-show="toReleaseNamespace.isBranch && toReleaseNamespa
<span ng-if="isNoCompare" ng-bind="config.newValue"></span>
</td>
<td>
<span class="block" ng-bind="config.item.dataChangeLastModifiedBy"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedByDisplayName + '(' + config.item.dataChangeLastModifiedBy + ')'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'HH:mm:ss'"></span>
</td>
Expand Down Expand Up @@ -203,7 +203,7 @@ <h4 class="modal-title" ng-show="toReleaseNamespace.isBranch && toReleaseNamespa
<apollodiff old-str="config.masterReleaseValue" new-str="config.item.value" apollo-id="'grayDiffMasterReleased:' + config.item.key"></apollodiff>
</td>
<td width="15%">
<span class="block" ng-bind="config.item.dataChangeLastModifiedBy"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedByDisplayName + '(' + config.item.dataChangeLastModifiedBy + ')'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'yyyy-MM-dd'"></span>
<span class="block" ng-bind="config.item.dataChangeLastModifiedTime | date: 'HH:mm:ss'"></span>
</td>
Expand Down

0 comments on commit 8be9b56

Please sign in to comment.