Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/web/src/pages/HistoryPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect, useState } from "react";
import { Clock, Search, Eye, Download, Share2 } from "lucide-react";
import { Clock, Search, Eye, Share2 } from "lucide-react";

interface RunMeta {
run_id: string;
Expand Down Expand Up @@ -123,7 +123,7 @@ export default function HistoryPage() {

{filtered.length > 0 && (
<p className="text-xs text-slate-400">
{selected.size === 0 ? "Select 2 runs to compare and export" : selected.size === 2 ? "2 selected — click Export & Compare" : `Select 1 more to compare (${2 - selected.size()} left)`}
{selected.size === 0 ? "Select 2 runs to compare and export" : selected.size === 2 ? "2 selected — click Export & Compare" : `Select 1 more to compare (${2 - selected.size} left)`}
</p>
)}
</div>
Expand Down
Loading