Skip to content

Commit 4d7cf6d

Browse files
committed
[DSC-1944] Use btn-outline-secondary class for back button
1 parent d601e4a commit 4d7cf6d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/bulk-import/bulk-import-page.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ <h2 class="mb-3">{{ 'bulk-import.title' | translate }}</h2>
1313
<input type="checkbox" formControlName="abortOnError" id="abortOnError" class="form-check-input" />
1414
<label for="abortOnError" class="mr-5">{{ 'bulk-import.abort-on-error' | translate }}</label>
1515
</div>
16-
16+
1717
<button type="submit" class="btn btn-primary float-right" [disabled]="form.invalid || (isProcessingImport() | async)" >
1818
<span *ngIf="(isProcessingImport() | async)">
1919
<i class='fas fa-circle-notch fa-spin'></i> {{'bulk-import.processing' | translate}}
@@ -22,9 +22,9 @@ <h2 class="mb-3">{{ 'bulk-import.title' | translate }}</h2>
2222
{{'bulk-import.submit' | translate}}
2323
</span>
2424
</button>
25-
<button class="btn btn-secondary float-right mr-2" (click)="goBack()">
25+
<button class="btn btn-outline-secondary float-right mr-2" (click)="goBack()">
2626
{{'bulk-import.back' | translate}}
2727
</button>
2828

2929
</form>
30-
</div>
30+
</div>

0 commit comments

Comments
 (0)