mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-12-22 19:55:12 +00:00
Apply suggestions from code review
Switching from single to double quotes
This commit is contained in:
parent
058230e9a9
commit
ac237a6ba1
|
@ -23,11 +23,11 @@ import {NgcCookieConsentModule, NgcCookieConsentConfig} from 'ngx-cookieconsent'
|
||||||
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
||||||
import {TopBarComponent} from './components/top-bar/top-bar.component';
|
import {TopBarComponent} from './components/top-bar/top-bar.component';
|
||||||
import {RouterModule} from '@angular/router';
|
import {RouterModule} from '@angular/router';
|
||||||
import {MatButtonModule} from '@angular/material/button';
|
import {MatButtonModule} from "@angular/material/button";
|
||||||
import {MatToolbarModule} from '@angular/material/toolbar';
|
import {MatToolbarModule} from '@angular/material/toolbar';
|
||||||
import {MatIconModule} from '@angular/material/icon';
|
import {MatIconModule} from '@angular/material/icon';
|
||||||
import {MatSidenavModule} from '@angular/material/sidenav';
|
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';
|
import {BottomBarComponent} from './components/bottom-bar/bottom-bar.component';
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
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 component: BottomBarComponent;
|
||||||
let fixture: ComponentFixture<BottomBarComponent>;
|
let fixture: ComponentFixture<BottomBarComponent>;
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-bottom-bar',
|
selector: 'app-bottom-bar',
|
||||||
templateUrl: './bottom-bar.component.html',
|
templateUrl: "./bottom-bar.component.html",
|
||||||
styleUrls: ['./bottom-bar.component.css']
|
styleUrls: ["./bottom-bar.component.css"]
|
||||||
})
|
})
|
||||||
export class BottomBarComponent implements OnInit {
|
export class BottomBarComponent implements OnInit {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user