File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
src/app/modules/activities-management Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 4
4
< tr class ="d-flex ">
5
5
< th class ="col-4 text-center "> Activity ID</ th >
6
6
< th class ="col-4 text-center "> Activity</ th >
7
- < th class ="col-2 text-center "> Options</ th >
8
- < th class ="col-2 text-center "> Operation </ th >
7
+ < th class ="col-2 text-center hidden "> Options</ th >
8
+ < th class ="col-4 text-center "> Status </ th >
9
9
</ tr >
10
10
</ thead >
11
11
< app-loading-bar *ngIf ="isLoading$ | async "> </ app-loading-bar >
12
12
< tbody *ngIf ="(isLoading$ | async) === false ">
13
13
< tr class ="d-flex " *ngFor ="let activity of activities ">
14
14
< td class ="col-4 text-break "> {{ activity.id }}</ td >
15
15
< td class ="col-4 "> {{ activity.name }}</ td >
16
- < td class ="col-2 text-center ">
16
+ < td class ="col-2 text-center hidden ">
17
17
< button type ="button " class ="btn btn-sm btn-primary " (click) ="updateActivity(activity.id) ">
18
18
< i class ="fa fa-pencil fa-xs "> </ i >
19
19
</ button >
20
20
</ td >
21
- < td class ="col-2 text-center ">
22
- < app-dropdown
23
- [info] = " activity "
24
- (updateInfo) = " changeOperation($event) "
25
- > </ app-dropdown >
21
+ < td class ="col-4 text-center ">
22
+ < div class =" flex justify-center " >
23
+ < em class =" fa mr-2 mt-1 " [ngClass] =" [ activity.btnIcon, activity.iconColor] " > </ em >
24
+ < p > {{ activity.btnName }} </ p >
25
+ </ div >
26
26
</ td >
27
27
</ tr >
28
28
</ tbody >
Original file line number Diff line number Diff line change 1
1
< div class ="col-12 col-md-9 px-0 ">
2
- < div >
2
+ < div class =" hidden " >
3
3
< app-create-activity
4
4
[showActivityForm] ="showActivityForm " (changeValueShowActivityForm) ="showActivityForm = $event "> </ app-create-activity >
5
5
</ div >
You can’t perform that action at this time.
0 commit comments