Merge branch 'Development' of https://gitlab.eudat.eu/dmp/OpenAIRE-EUDAT-DMP-service-pilot into Development
This commit is contained in:
commit
5509307388
|
@ -96,7 +96,7 @@ import { ProjectDetailedComponent } from './viewers/project-detailed/project-det
|
|||
|
||||
import {ProgressBarModule} from 'primeng/primeng';
|
||||
import {StepsModule,MenuItem} from 'primeng/primeng';
|
||||
import {SidebarModule as NgSidebarModule} from 'primeng/primeng';
|
||||
import {CheckboxModule} from 'primeng/primeng';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
|
@ -155,7 +155,7 @@ import {SidebarModule as NgSidebarModule} from 'primeng/primeng';
|
|||
BrowserAnimationsModule,
|
||||
SidebarModule.forRoot(),
|
||||
StepsModule,
|
||||
NgSidebarModule
|
||||
CheckboxModule
|
||||
],
|
||||
providers: [{
|
||||
provide: HTTP_INTERCEPTORS,
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
<div [formGroup]="form" class="form-group">
|
||||
<input id="{{field.id + 'checkboc'}}" class="checkbox-icon" formControlName="value" type="checkbox">
|
||||
<label for="{{field.id + 'checkboc'}}" class="checkbox-label">{{field.data.label}}</label>
|
||||
<p-checkbox [formControl]="form" label="Test"></p-checkbox>
|
||||
</div>
|
|
@ -1,5 +1,5 @@
|
|||
<div [formGroup]="form">
|
||||
<select class="form-control" formControlName="value">
|
||||
<option *ngFor="let opt of field.data.options" [value]="opt.value">{{opt.label}}</option>
|
||||
<select class="form-control" formControlName="value">
|
||||
<option *ngFor="let opt of field.data.options" [value]="opt.value">{{opt.label}}</option>
|
||||
</select>
|
||||
</div>
|
|
@ -18,7 +18,7 @@ export class RestBase {
|
|||
|
||||
|
||||
protocol: string = "http";
|
||||
hostname: string ="localhost"
|
||||
hostname: string ="192.168.32.103"
|
||||
port: number = 8080;
|
||||
webappname: string = "dmp-backend";
|
||||
|
||||
|
|
Loading…
Reference in New Issue