From ac237a6ba14241f54c2d9372cdce75a6cccbb398 Mon Sep 17 00:00:00 2001 From: Patrick <50352812+Mueller-Patrick@users.noreply.github.com> Date: Sat, 8 May 2021 20:00:30 +0200 Subject: [PATCH] Apply suggestions from code review Switching from single to double quotes --- Frontend/src/app/app.module.ts | 4 ++-- .../app/components/bottom-bar/bottom-bar.component.spec.ts | 4 ++-- .../src/app/components/bottom-bar/bottom-bar.component.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Frontend/src/app/app.module.ts b/Frontend/src/app/app.module.ts index ea24310..0e74770 100644 --- a/Frontend/src/app/app.module.ts +++ b/Frontend/src/app/app.module.ts @@ -23,11 +23,11 @@ import {NgcCookieConsentModule, NgcCookieConsentConfig} from 'ngx-cookieconsent' import {MatSlideToggleModule} from '@angular/material/slide-toggle'; import {TopBarComponent} from './components/top-bar/top-bar.component'; import {RouterModule} from '@angular/router'; -import {MatButtonModule} from '@angular/material/button'; +import {MatButtonModule} from "@angular/material/button"; import {MatToolbarModule} from '@angular/material/toolbar'; import {MatIconModule} from '@angular/material/icon'; import {MatSidenavModule} from '@angular/material/sidenav'; -import {MatListModule} from '@angular/material/list'; +import {MatListModule} from "@angular/material/list"; import {BottomBarComponent} from './components/bottom-bar/bottom-bar.component'; diff --git a/Frontend/src/app/components/bottom-bar/bottom-bar.component.spec.ts b/Frontend/src/app/components/bottom-bar/bottom-bar.component.spec.ts index ba58627..0181062 100644 --- a/Frontend/src/app/components/bottom-bar/bottom-bar.component.spec.ts +++ b/Frontend/src/app/components/bottom-bar/bottom-bar.component.spec.ts @@ -1,8 +1,8 @@ import { ComponentFixture, TestBed } from '@angular/core/testing'; -import { BottomBarComponent } from './bottom-bar.component'; +import { BottomBarComponent } from "./bottom-bar.component"; -describe('BottomBarComponent', () => { +describe("BottomBarComponent", () => { let component: BottomBarComponent; let fixture: ComponentFixture; diff --git a/Frontend/src/app/components/bottom-bar/bottom-bar.component.ts b/Frontend/src/app/components/bottom-bar/bottom-bar.component.ts index 89baa39..603ea87 100644 --- a/Frontend/src/app/components/bottom-bar/bottom-bar.component.ts +++ b/Frontend/src/app/components/bottom-bar/bottom-bar.component.ts @@ -2,8 +2,8 @@ import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-bottom-bar', - templateUrl: './bottom-bar.component.html', - styleUrls: ['./bottom-bar.component.css'] + templateUrl: "./bottom-bar.component.html", + styleUrls: ["./bottom-bar.component.css"] }) export class BottomBarComponent implements OnInit {