Skip to content

Commit

Permalink
🐛 暂时性解决闪电面板卡顿问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Littlefean committed Jan 25, 2025
1 parent 13b365e commit 91c7926
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/_start_file_panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,24 +278,24 @@ export default function StartFilePanel({ open = false }: { open: boolean }) {
</td>
)}
<td className="flex justify-center">
<IconButton
<button
className="mx-0.5 px-2 py-1"
onClick={onLoadCurrentStartFile(file.path)}
>
<HardDriveDownload />
</IconButton>
<IconButton
</button>
<button
className="mx-0.5 px-2 py-1"
onClick={onSetCurrentStartFile(file.path)}
>
<Pin />
</IconButton>
<IconButton
</button>
<button
className="mx-0.5 px-2 py-1"
onClick={onRemoveFile(file.path)}
>
<Delete />
</IconButton>
</button>
</td>
</tr>
))}
Expand Down

0 comments on commit 91c7926

Please sign in to comment.