X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-frontend%2Fsrc%2Fapp%2Fservices%2Fui%2Fui.service.ts;h=30f92d092c2c33d384ddd4b28009a8166f6c066c;hb=471200592f250c2de77cd4eb1a965da929f210fb;hp=1e2376aadff69ac5e1e1a35ed6ccad41dc35087d;hpb=3185681c9af47e8ff5b235d8d6c51f8f06fd5bce;p=nonrtric.git diff --git a/dashboard/webapp-frontend/src/app/services/ui/ui.service.ts b/dashboard/webapp-frontend/src/app/services/ui/ui.service.ts index 1e2376aa..30f92d09 100644 --- a/dashboard/webapp-frontend/src/app/services/ui/ui.service.ts +++ b/dashboard/webapp-frontend/src/app/services/ui/ui.service.ts @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -17,8 +17,8 @@ * limitations under the License. * ========================LICENSE_END=================================== */ -import {Injectable} from '@angular/core'; -import {BehaviorSubject} from 'rxjs'; +import { Injectable } from '@angular/core'; +import { BehaviorSubject } from 'rxjs'; @Injectable() export class UiService { @@ -27,6 +27,6 @@ export class UiService { constructor() { // TODO: if the user is signed in get the default value from Firebase - this.darkModeState = new BehaviorSubject(false); + this.darkModeState = new BehaviorSubject(true); } }