apply is now performed on snapshot
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-12-06 19:23:17 +01:00
parent 02af4b667e
commit 73a30e5478
2 changed files with 147 additions and 11 deletions

View File

@@ -24,9 +24,18 @@
<md-list-item>
<table>
<tr><th>Creations:</th><td>0</td></tr>
<tr><th>Updates:</th><td>0</td></tr>
<tr><th>Deletions:</th><td>0</td></tr>
<tr>
<th>Creations:</th>
<td>{{ pendingChanges.created.length }}</td>
</tr>
<tr>
<th>Updates:</th>
<td>{{ pendingChanges.updated.length }}</td>
</tr>
<tr>
<th>Deletions:</th>
<td>{{ pendingChanges.deleted.length }}</td>
</tr>
</table>
</md-list-item>