missing git add from previous commit
This commit is contained in:
parent
f23ab15c0a
commit
01b46d40d6
@ -1,7 +1,7 @@
|
|||||||
import {Component, OnInit} from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
import {IDataSource} from '@poweredsoft/data';
|
import {IDataSource} from '@poweredsoft/data';
|
||||||
import {HttpDataSourceService} from '@poweredsoft/ngx-data';
|
|
||||||
import {of, throwError} from 'rxjs';
|
import {of, throwError} from 'rxjs';
|
||||||
|
import {HttpDataSourceService} from "@openharbor/ngx-data";
|
||||||
|
|
||||||
interface ContactQuery {
|
interface ContactQuery {
|
||||||
contactId: number
|
contactId: number
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
import { Component, OnInit } from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
import { IMerchant } from 'src/app/data/services/IMerchant';
|
import {IDataSource} from '@poweredsoft/data';
|
||||||
import { IDataSource } from '@poweredsoft/data';
|
import {MerchantService} from 'src/app/data/services/merchant.service';
|
||||||
import { MerchantService } from 'src/app/data/services/merchant.service';
|
import {FormBuilder, Validators} from '@angular/forms';
|
||||||
import { Subscription } from 'rxjs';
|
import {IModelFormCreateEvent} from "@openharbor/ngx-data-bootstrap-ui";
|
||||||
import { HttpDataSourceService } from '@poweredsoft/ngx-data';
|
|
||||||
import { IModelFormCreateEvent } from '@poweredsoft/ngx-bootstrap';
|
|
||||||
import { FormBuilder, Validators } from '@angular/forms';
|
|
||||||
|
|
||||||
|
|
||||||
interface ISchool {
|
interface ISchool {
|
||||||
@ -44,7 +41,7 @@ export class ListViewDemoHomeComponent implements OnInit {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
onFormCreate(event: IModelFormCreateEvent) {
|
onFormCreate(event: IModelFormCreateEvent) {
|
||||||
event.shouldSetCommandModel = false;
|
event.shouldSetCommandModel = false;
|
||||||
event.formGroup = this.fb.group({
|
event.formGroup = this.fb.group({
|
||||||
'name': [event.commandModel.name, Validators.required],
|
'name': [event.commandModel.name, Validators.required],
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {Component, OnInit} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {MerchantService} from 'src/app/data/services/merchant.service';
|
import {MerchantService} from 'src/app/data/services/merchant.service';
|
||||||
import {IMerchant} from 'src/app/data/services/IMerchant';
|
import {IMerchant} from 'src/app/data/services/IMerchant';
|
||||||
import {IDataSource} from '@poweredsoft/data';
|
import {IDataSource} from '@poweredsoft/data';
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import {Component, OnInit} from '@angular/core';
|
import {Component, OnInit} from '@angular/core';
|
||||||
import {IDataSource} from '@poweredsoft/data';
|
import {IDataSource} from '@poweredsoft/data';
|
||||||
import {HttpDataSourceService} from '@poweredsoft/ngx-data';
|
|
||||||
import {of} from 'rxjs';
|
import {of} from 'rxjs';
|
||||||
|
import {HttpDataSourceService} from "@openharbor/ngx-data";
|
||||||
|
|
||||||
interface OnePersonQuery {
|
interface OnePersonQuery {
|
||||||
personId: number;
|
personId: number;
|
||||||
|
Loading…
Reference in New Issue
Block a user