Skip to content

Commit

Permalink
feat: fix tips text
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfuboy committed Jun 28, 2022
1 parent 4414f49 commit 34a54d6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<div>
<div class="history-title flex px-2 items-center justify-between h-10">
<div class="flex items-center justify-between h-10 px-2 history-title">
<span class="font-bold">History</span>
<div
class="icon flex shrink-0 items-center justify-center h-7 text-ms cursor-pointer"
class="flex items-center justify-center cursor-pointer icon shrink-0 h-7 text-ms"
nzTooltipTitle="Clear All"
nz-tooltip
nz-popconfirm
nzPopconfirmTitle="Are you sure delete this task?"
nzPopconfirmTitle="Are you sure delete all history?"
(nzOnConfirm)="clearAllHistory()"
(nzOnCancel)="cancel()"
nzOkText="Yes"
Expand All @@ -18,12 +18,12 @@
</div>
<div
*ngFor="let item of historyList"
class="p-2 h-8 flex items-center text-xs hover:bg-gray-100 cursor-pointer"
class="flex items-center h-8 p-2 text-xs cursor-pointer hover:bg-gray-100"
(click)="gotoTestHistory(item)"
>
<span class="method_type font-light block w-12" [ngClass]="methodColor(item.request.method)">{{
<span class="block w-12 font-light method_type" [ngClass]="methodColor(item.request.method)">{{
item.request.method
}}</span>
<span class="flex-1 text-gray-600 truncate overflow-hidden">{{ item.request.uri }}</span>
<span class="flex-1 overflow-hidden text-gray-600 truncate">{{ item.request.uri }}</span>
</div>
</div>

0 comments on commit 34a54d6

Please sign in to comment.