Skip to content
Snippets Groups Projects

Develop

Merged François Agneray requested to merge develop into master
113 files
+ 790
242
Compare changes
  • Side-by-side
  • Inline
Files
113
@@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/
import { Component, Input, Output, TemplateRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { Component, Input, Output, TemplateRef, EventEmitter, OnChanges, SimpleChanges, ChangeDetectionStrategy } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
import { BsModalService } from 'ngx-bootstrap/modal';
@@ -17,7 +17,8 @@ import { FileInfo } from 'src/app/admin/store/models';
@Component({
selector: 'app-path-select-form-control',
templateUrl: 'path-select-form-control.component.html'
templateUrl: 'path-select-form-control.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class PathSelectFormControlComponent implements OnChanges {
@Input() form: UntypedFormGroup;
Loading