mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	 372ac3a40c
			
		
	
	372ac3a40c
	
	
	
		
			
			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>
 |