mirror of
https://github.com/bitwarden/web
synced 2025-12-27 21:53:29 +00:00
Export all events matching dates (#990)
* Export eagerly pulls down all events Export does not add to rendered elements since that may cause slow down. Export is tied to the currently rendered list of events though `dirtyDates` bool * Use manual btn-submit class * Remove unnecessary method * Fix ExpressionChangedAfterItHasBeenCheckedError
This commit is contained in:
@@ -232,10 +232,8 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary disabled" disabled=true *ngIf="disableSend">
|
||||
<span>{{'save' | i18n}}</span>
|
||||
</button>
|
||||
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading" *ngIf="!disableSend">
|
||||
<button type="submit" class="btn btn-primary btn-submit manual" [ngClass]="{loading:form.loading}"
|
||||
[disabled]="form.loading || disableSend">
|
||||
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
|
||||
<span>{{'save' | i18n}}</span>
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user