remove "Previous instantiotion" button from service popup.
[vid.git] / vid-webpack-master / src / app / shared / models / formControlModels / formPopupDetails.model.ts
index 40d74d6..36704e2 100644 (file)
@@ -14,8 +14,6 @@ export class FormPopupDetails {
   modelInformationItems: ModelInformationItem[];
   onSubmit : (that : any, form: FormGroup , ...args) =>  void;
   onCancel : (that : any, form: FormGroup) => void;
-  onOtherAction: (that: any, form: FormGroup) => void;
-
 
   constructor(that : any,
               popupTypeName : PopupType ,
@@ -27,8 +25,7 @@ export class FormPopupDetails {
               dynamicInputsControlList : FormControlModel[],
               modelInformationItems : ModelInformationItem[],
               onSubmit : (that : any, form : FormGroup, ...args) =>  void,
-              onCancel: (that: any, form: FormGroup) => void,
-              onOtherAction?: (that: any, form: FormGroup) => void) {
+              onCancel: (that: any, form: FormGroup) => void) {
     this.title = title;
     this.leftSubTitle = leftSubTitle;
     this.rightSubTitle = rightSubTitle;
@@ -37,7 +34,6 @@ export class FormPopupDetails {
     this.modelInformationItems = modelInformationItems;
     this.onSubmit = onSubmit;
     this.onCancel = onCancel;
-    this.onOtherAction = onOtherAction;
     this.popupTypeName = popupTypeName;
     this.UUIDData = UUIDData;
     this.that = that;