File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed
activities-management/components/activity-list
customer-management/components/customer-info/components/customer-list Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 44 < tr class ="d-flex ">
55 < th class ="col-4 "> Activity ID</ th >
66 < th class ="col-5 "> Activity</ th >
7- < th class ="col-3 text-center "> </ th >
7+ < th class ="col-3 text-center "> Options </ th >
88 </ tr >
99 </ thead >
1010 < app-loading-bar *ngIf ="(isLoading$ | async) "> </ app-loading-bar >
Original file line number Diff line number Diff line change 1- < table
1+ < div class ="table table-responsive ">
2+ < table
23 *ngIf ="customers "
3- class ="table table-responsive-sm table- bordered table-striped mb-0 "
4+ class ="table table-bordered table-striped "
45 datatable
56 [dtTrigger] ="dtTrigger "
67 [dtOptions] ="dtOptions "
78>
89 < thead class ="thead-blue ">
910 < tr class ="d-flex ">
10- < th class ="col-sm-4 "> Customer ID</ th >
11- < th class ="col-sm-5 "> Name</ th >
12- < th class ="col-sm-3 text-center "> Options</ th >
11+ < th class ="col-5 "> Customer ID</ th >
12+ < th class ="col-3 "> Name</ th >
13+ < th class ="col-4 text-center "> Options</ th >
1314 </ tr >
1415 </ thead >
1516 < app-loading-bar *ngIf ="(isLoading$ | async) "> </ app-loading-bar >
1617 < tbody *ngIf ="((isLoading$ | async) === false) ">
1718 < tr class ="d-flex " *ngFor ="let customer of customers ">
18- < td class ="col col-sm-4 "> {{ customer.id }}</ td >
19- < td class ="col col-sm-5 "> {{ customer.name }}</ td >
20- < td class ="col col-sm-3 text-center ">
19+ < td class ="col-5 "> {{ customer.id }}</ td >
20+ < td class ="col-3 "> {{ customer.name }}</ td >
21+ < td class ="col-4 text-center ">
2122 < button
2223 (click) ="editCustomer(customer.id) "
2324 type ="button "
3839 </ tr >
3940 </ tbody >
4041</ table >
42+ </ div >
4143
4244< app-dialog
4345 *ngIf ="showModal "
Original file line number Diff line number Diff line change 1+ .col-3 {
2+ padding : 0rem 0rem 2rem ;
3+ overflow : hidden ;
4+ }
You can’t perform that action at this time.
0 commit comments