Changeset 96108d8


Ignore:
Timestamp:
07/22/20 13:57:20 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
a8ccc2c
Parents:
fbaea22
Message:

Format code and fix errors

Location:
Farmatiko/ClientApp/src/app
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Farmatiko/ClientApp/src/app/counter/counter.component.css

    rfbaea22 r96108d8  
    11.wrapper {
    2     display: flex;
    3     justify-content: space-around;
    4     padding-top: 50px;
     2  display: flex;
     3  justify-content: space-around;
     4  padding-top: 50px;
    55}
    66
    77nav {
    8     float: right;
     8  float: right;
    99}
    1010
    1111table {
    12     margin-top: 25px;
     12  margin-top: 25px;
    1313}
  • Farmatiko/ClientApp/src/app/counter/counter.component.html

    rfbaea22 r96108d8  
    1 <h1>Counter</h1>
     1<!-- <h1>Counter</h1>
    22
    33<p>This is a simple example of an Angular component.</p>
     
    55<p aria-live="polite">Current count: <strong>{{ currentCount }}</strong></p>
    66
    7 <button class="btn btn-primary" (click)="incrementCounter()">Increment</button>
     7<button class="btn btn-primary" (click)="incrementCounter()">Increment</button> -->
    88
    99
  • Farmatiko/ClientApp/src/app/models/Pandemic.ts

    rfbaea22 r96108d8  
    11export class Pandemic {
    22  Name: string;
    3   TotalMK: BigInt;
    4   ActiveMK: BigInt;
    5   DeathsMK: BigInt;
    6   NewMK: BigInt;
    7   TotalGlobal: BigInt;
    8   DeathsGlobal: BigInt;
    9   ActiveGlobal: BigInt;
     3  TotalMK: BigInteger;
     4  ActiveMK: BigInteger;
     5  DeathsMK: BigInteger;
     6  NewMK: BigInteger;
     7  TotalGlobal: BigInteger;
     8  DeathsGlobal: BigInteger;
     9  ActiveGlobal: BigInteger;
    1010}
Note: See TracChangeset for help on using the changeset viewer.