* gitignore updated with correct dist folder
* auth welcome message changed * deploy script fixed * paths changed for live auth page * nested set implementation in backend rewquired frontend indent change aswell
This commit is contained in:
@@ -21,7 +21,7 @@ export function tokenGetterFunctionWrapper() {
|
||||
tokenGetter: tokenGetterFunctionWrapper,
|
||||
whitelistedDomains: [
|
||||
"localhost:8888",
|
||||
"api.beik.lxuz.hu",
|
||||
"api.gulbaba.bggeneral.hu",
|
||||
],
|
||||
},
|
||||
}),
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<div class="ui middle aligned center aligned grid">
|
||||
<div class="column">
|
||||
<h2 class="ui teal image header">
|
||||
<i class="circular inverted tiny olive file text icon"></i>
|
||||
<i class="circular inverted tiny olive wrench icon"></i>
|
||||
<div class="content">
|
||||
WN BEIK Bejelentkezés
|
||||
WN GÜLBABA Bejelentkezés
|
||||
</div>
|
||||
</h2>
|
||||
<form (ngSubmit)="doSubmit()" class="ui large form" [class.error]="hasError" [class.loading]="isLoading">
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<i class="dropdown icon"></i>
|
||||
<div class="default text">Válasszon</div>
|
||||
<div class="menu">
|
||||
<div class="item {{flClass(facilityLocation)}}" [class.disabled]="facilityLocation.level==2"
|
||||
<div class="item {{flClass(facilityLocation)}}" [class.disabled]="facilityLocation.level==1"
|
||||
*ngFor="let facilityLocation of facilityLocations"
|
||||
[attr.data-value]="facilityLocation?.id">
|
||||
<strong>{{facilityLocation?.roomNumber}}</strong> - {{facilityLocation?.name}}
|
||||
|
||||
@@ -2,12 +2,11 @@
|
||||
import {finalize} from 'rxjs/operators';
|
||||
import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core';
|
||||
import { ActivatedRoute, Router } from "@angular/router";
|
||||
import { ErrorCategory } from "../shared/error-category";
|
||||
import { ErrorOrigin } from "../shared/error-origin";
|
||||
import { FacilityLocation } from "../shared/facility-location";
|
||||
import { SolutionTimeInterval } from "../shared/solution-time-interval";
|
||||
import { ErrorCategory } from "../shared";
|
||||
import { ErrorOrigin } from "../shared";
|
||||
import { FacilityLocation } from "../shared";
|
||||
import { SolutionTimeInterval } from "../shared";
|
||||
import { FaultManagerService } from "../fault-manager.service";
|
||||
import { Fault } from "../shared/fault";
|
||||
import { SimpleFault } from "../shared/simple-fault";
|
||||
import { Title } from "@angular/platform-browser";
|
||||
|
||||
@@ -77,7 +76,7 @@ export class RecordFaultComponent implements OnInit, AfterViewInit {
|
||||
}
|
||||
|
||||
public flClass(fl: FacilityLocation) {
|
||||
return 'depth' + (fl.level - 1).toString();
|
||||
return 'depth' + (fl.level).toString();
|
||||
}
|
||||
|
||||
public doSubmit() {
|
||||
|
||||
Reference in New Issue
Block a user