1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-27 05:33:29 +00:00

update libs and move to webpack 4

This commit is contained in:
Kyle Spearrin
2018-09-12 10:17:06 -04:00
parent 3ef60cb3a0
commit 0e96a462ee
12 changed files with 2230 additions and 1710 deletions

View File

@@ -14,12 +14,12 @@
<strong *ngIf="syncRunning" class="text-success">{{'running' | i18n}}</strong>
<strong *ngIf="!syncRunning" class="text-danger">{{'stopped' | i18n}}</strong>
</p>
<button #startBtn (click)="start()" [appApiAction]="startPromise" class="btn btn-primary" [disabled]="startBtn.loading">
<button #startBtn (click)="start()" [appApiAction]="startPromise" class="btn btn-primary mr-1" [disabled]="startBtn.loading">
<i class="fa fa-play fa-fw" [hidden]="startBtn.loading"></i>
<i class="fa fa-spinner fa-fw fa-spin" [hidden]="!startBtn.loading"></i>
{{'startSync' | i18n}}
</button>
<button (click)="stop()" class="btn btn-primary">
<button (click)="stop()" class="btn btn-primary mr-1">
<i class="fa fa-stop fa-fw"></i>
{{'stopSync' | i18n}}
</button>