Skip to content

Commit 0c21c40

Browse files
committed
UI tweaks
1 parent 9d68bbd commit 0c21c40

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

webview-ui/src/components/history/HistoryView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const HistoryView = ({ onDone }: HistoryViewProps) => {
171171

172172
{/* Select all control in selection mode */}
173173
{isSelectionMode && tasks.length > 0 && (
174-
<div className="flex items-center py-1 px-2 bg-vscode-editor-background rounded">
174+
<div className="flex items-center py-1">
175175
<div className="flex items-center gap-2">
176176
<Checkbox
177177
checked={tasks.length > 0 && selectedTaskIds.length === tasks.length}
@@ -225,7 +225,7 @@ const HistoryView = ({ onDone }: HistoryViewProps) => {
225225
vscode.postMessage({ type: "showTaskWithId", text: item.id })
226226
}
227227
}}>
228-
<div className="flex items-start p-3 gap-2">
228+
<div className="flex items-start p-3 gap-2 ml-2">
229229
{/* Show checkbox in selection mode */}
230230
{isSelectionMode && (
231231
<div

webview-ui/src/i18n/locales/en/history.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"delete": "Delete",
2727
"exitSelection": "Exit Selection",
2828
"selectionMode": "Selection Mode",
29-
"deselectAll": "Deselect All",
30-
"selectAll": "Select All",
29+
"deselectAll": "Deselect all",
30+
"selectAll": "Select all",
3131
"selectedItems": "Selected {{selected}}/{{total}} items",
3232
"clearSelection": "Clear Selection",
3333
"deleteSelected": "Delete Selected",

0 commit comments

Comments
 (0)