Skip to content

Commit

Permalink
Check in for second one on one meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveen-Golla-189 committed Mar 26, 2024
1 parent a2d244e commit 6e2c6d1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/supplier/supplier-live/supplier-live.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<!-- Bid Grid -->
<div>
<ag-grid-angular class="ag-theme-quartz" style="height: 500px;" [rowData]="rowData" [columnDefs]="colDefs">
</ag-grid-angular>
<!-- <ag-grid-angular class="ag-theme-quartz" style="height: 500px;" [rowData]="rowData" [columnDefs]="colDefs">
</ag-grid-angular> -->
</div>

<!-- Bid Footer -->
Expand Down
16 changes: 8 additions & 8 deletions src/supplier/supplier-live/supplier-live.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component } from '@angular/core';
import { AgGridAngular } from 'ag-grid-angular';
import { ColDef } from 'ag-grid-community';
// import { AgGridAngular } from 'ag-grid-angular';
// import { ColDef } from 'ag-grid-community';

@Component({
selector: 'app-supplier-live',
Expand All @@ -16,10 +16,10 @@ export class SupplierLiveComponent {
{ make: "Toyota", model: "Corolla", price: 29600, electric: false },
];

colDefs: ColDef[] = [
{ field: "make" },
{ field: "model" },
{ field: "price" },
{ field: "electric" }
];
// colDefs: ColDef[] = [
// { field: "make" },
// { field: "model" },
// { field: "price" },
// { field: "electric" }
// ];
}
5 changes: 2 additions & 3 deletions src/supplier/supplier-live/supplier-live.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SupplierLotCardComponent } from './supplier-lot-card/supplier-lot-card.
import { BidHeaderComponent } from './bid-header/bid-header.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { FormsModule } from '@angular/forms';
import { AgGridModule } from 'ag-grid-angular';
// import { AgGridModule } from 'ag-grid-angular';

const routes: Route [] = [
{
Expand All @@ -15,7 +15,6 @@ const routes: Route [] = [
}
]


@NgModule({
declarations: [
SupplierLiveComponent,
Expand All @@ -26,7 +25,7 @@ const routes: Route [] = [
CommonModule,
FormsModule,
RouterModule.forChild(routes),
AgGridModule,
// AgGridModule,
],
exports: [RouterModule]
})
Expand Down

0 comments on commit 6e2c6d1

Please sign in to comment.