You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/releases/details/release.details.pug
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,7 @@ include ../../template/_mixins
111
111
comment="comment",
112
112
release="vm.release",
113
113
menu-move-to="release",
114
+
menu-move-text="Move to public comments",
114
115
on-moved="vm.loadComments()")
115
116
editor(ng-model="vm.newModerationComment", user="vm.AuthService.user", placeholder="Comment about release moderation", markdown-text="Comments are parsed with Markdown.")
116
117
@@ -230,12 +231,22 @@ include ../../template/_mixins
release-comment(ng-repeat="comment in vm.commentsHead track by comment.id", comment="comment", release="vm.release", menu-move-to="release_moderation")
234
+
release-comment(ng-repeat="comment in vm.commentsHead track by comment.id",
release-comment(ng-repeat="comment in vm.commentsTail track by comment.id", comment="comment", release="vm.release", menu-move-to="release_moderation")
244
+
release-comment(ng-repeat="comment in vm.commentsTail track by comment.id",
0 commit comments