Fix cleanup backup button style

Sorry for messing with the btn style names, this grew
This commit is contained in:
Johannes Zellner
2020-05-15 11:41:52 +02:00
parent e15dcd41db
commit 29b0785594

View File

@@ -285,7 +285,7 @@
<div class="row">
<div class="col-md-12 text-right">
<button class="btn btn-outline" ng-click="createBackup.startCleanup()" ng-show="!createBackup.busy" style="margin-right: 10px">Cleanup Backups</button>
<button class="btn btn-default" ng-click="createBackup.startCleanup()" ng-show="!createBackup.busy" style="margin-right: 10px">Cleanup Backups</button>
<button class="btn btn-outline btn-primary" ng-click="createBackup.startBackup()" ng-show="!createBackup.busy" style="margin-right: 10px">Backup now</button>
<button class="btn btn-outline btn-danger" ng-click="createBackup.stopTask()" ng-show="createBackup.busy" style="margin-right: 10px">Stop {{ createBackup.taskType === 'backup' ? 'Backup' : 'Cleanup' }}</button>
</div>