mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

Ensure that no source files have trailing whitespace at end of lines and ensure that all files end with a single trailing newline. This also adds Github Actions to enforce whitespace conventions.
9 lines
343 B
HTML
9 lines
343 B
HTML
<div class="form-group">
|
|
<label [for]="inputId">{{title}}</label>
|
|
<input #inputField type="text" class="form-control" [class.is-invalid]="error" [id]="inputId" [(ngModel)]="value" (change)="onChange(value)">
|
|
<small *ngIf="hint" class="form-text text-muted">{{hint}}</small>
|
|
<div class="invalid-feedback">
|
|
{{error}}
|
|
</div>
|
|
</div>
|