aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/forms/unsaved-changes/unsaved-changes.component.ts
blob: b8fdeaf6595a1ba06a3ff09710a406190b9963bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component, Input } from "@angular/core";

@Component({
    selector: 'unsaved-changes',
    templateUrl: './unsaved-changes.component.html',
    styleUrls: []
})
export class UnsavedChangesComponent {

    @Input() isValidChangedData:boolean;

    constructor(){
    }



}