From c191ac2e8dd44be43e5f3896a3f869034352c82a Mon Sep 17 00:00:00 2001 From: James Allen Date: Wed, 20 Dec 2017 13:59:17 +0000 Subject: [PATCH] Show deleted files in v2 history --- services/web/app/views/project/editor/history.pug | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/web/app/views/project/editor/history.pug b/services/web/app/views/project/editor/history.pug index 6621cdb2d2..e5dac4419a 100644 --- a/services/web/app/views/project/editor/history.pug +++ b/services/web/app/views/project/editor/history.pug @@ -145,6 +145,9 @@ div#history(ng-show="ui.view == 'history'") div(ng-if="project_op.add") .action Created .doc {{ project_op.add.pathname }} + div(ng-if="project_op.remove") + .action Deleted + .doc {{ project_op.remove.pathname }} div.users div.user(ng-repeat="update_user in update.meta.users") .color-square(ng-if="update_user != null", ng-style="{'background-color': 'hsl({{ update_user.hue }}, 70%, 50%)'}")