Skip to content

Commit

Permalink
modified touches
Browse files Browse the repository at this point in the history
  • Loading branch information
user authored and user committed Mar 8, 2024
1 parent d7228d9 commit 67dfa0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<th scope="col" class="p-[2rem]">
Status
</th>
<th scope="col" class="p-[2rem]">
<!-- <th scope="col" class="p-[2rem]">
Action
</th>
</th> -->
<th scope="col" class="p-[2rem]">
</th>
</tr>
Expand Down Expand Up @@ -64,7 +64,7 @@
<span class="text-[#7535FD] font-[700]">{{terminal.status}}</span>
</div>
</td>
<td class="p-[2rem]">
<!-- <td class="p-[2rem]">
<div (click)="toggleTerminalActiveState(terminal.location)" *ngIf=" terminal.status === 'Activate' "
class="bg-[#F3F0FF] cursor-pointer p-[1rem] py-[0.5rem] flex items-center justify-center w-[120px] gap-[1rem] rounded-[4px]">
<span class="text-[#7535FD] font-[700]">{{terminal.action}}</span>
Expand All @@ -73,7 +73,7 @@
class="bg-[#E7EAEE] cursor-pointer px-[1rem] py-[1rem] flex items-center justify-center w-[120px] gap-[1rem] rounded-[4px]">
<span class="text-[#64748B]">{{terminal.action}}</span>
</div>
</td>
</td> -->
<td class="p-[2rem]">
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class DeactivateTerminalsComponent {
getActionTerminals(){
this.terminalService.getActionTerminals().subscribe({
next:(items: any)=>{
this.data = items;
this.data = items.data.content;
},
error:(items:any)=>{

Expand Down

0 comments on commit 67dfa0f

Please sign in to comment.