style: linter and prettier
This commit is contained in:
		
					parent
					
						
							
								212bee3bd2
							
						
					
				
			
			
				commit
				
					
						15a92b984c
					
				
			
		
					 5 changed files with 15 additions and 15 deletions
				
			
		|  | @ -1,4 +1,4 @@ | |||
| import {Component, EventEmitter, Input, Output} from '@angular/core'; | ||||
| import { Component, EventEmitter, Input, Output } from '@angular/core'; | ||||
| 
 | ||||
| @Component({ | ||||
|   selector: 'app-confirmation', | ||||
|  | @ -7,10 +7,10 @@ import {Component, EventEmitter, Input, Output} from '@angular/core'; | |||
|   templateUrl: './confirmation.component.html', | ||||
| }) | ||||
| export class ConfirmationComponent { | ||||
|   @Input() successful: boolean = true; | ||||
|   @Input() successful = true; | ||||
|   @Output() close = new EventEmitter<void>(); | ||||
| 
 | ||||
|   public closeModal(){ | ||||
|   public closeModal() { | ||||
|     this.close.emit(); | ||||
|   } | ||||
| } | ||||
|  |  | |||
		Reference in a new issue