Skip to content

Commit 45e81df

Browse files
committed
fix media & tables page
1 parent 3eec7e5 commit 45e81df

5 files changed

Lines changed: 274 additions & 64 deletions

File tree

examples/kitchen-sink-local-only.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def main() -> None:
8989
"train/loss": train_loss,
9090
"train/accuracy": train_acc,
9191
"media/preview_image": trackio.Image(
92-
img, caption=f"step {step}, run {run_idx}"
92+
img, caption="this is a caption"
9393
),
9494
"media/preview_audio": trackio.Audio(
9595
audio, sample_rate=16000, format="wav"

trackio/frontend/src/App.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@
395395
<Media
396396
project={selectedProject}
397397
selectedRuns={selectedRunRecords}
398+
allRuns={runs}
398399
{tableTruncateLength}
399400
/>
400401
{:else if currentPage === "reports"}

trackio/frontend/src/components/Dropdown.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
}
4747
4848
function handleFocus() {
49+
inputText = "";
4950
filteredIndices = choices.map((_, i) => i);
5051
showOptions = true;
5152
if (filterInput) {

0 commit comments

Comments
 (0)