Skip to content

Commit

Permalink
oninit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DoodleyJC committed Apr 3, 2024
1 parent a340d04 commit a3099d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bluenps/src/app/home-page/home-page.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import {formatDate} from '@angular/common';
import { HttpClient, HttpResponse } from '@angular/common/http';
import {signup, BackendService } from '../backend.service';
Expand All @@ -8,7 +8,7 @@ import { RouterModule } from '@angular/router';
templateUrl: './home-page.component.html',
styleUrls: ['./home-page.component.css']
})
export class HomePageComponent {
export class HomePageComponent implements OnInit {
title = 'bluenps';
test: any;
data: signup[]= [{name: "uninitialized", court: "uninitialized", time: "uninitialized"}];
Expand Down

0 comments on commit a3099d2

Please sign in to comment.