fix: resolve Progress module import and type inference issues in torrent table
Some checks failed
Build MIPS Binary / build (push) Failing after 36s

This commit is contained in:
spinline
2026-02-13 19:51:30 +03:00
parent b07d639c62
commit c79ed46f15
2 changed files with 3 additions and 2 deletions

View File

@@ -631,7 +631,7 @@ fn TorrentRow(
<span class="text-[10px] text-muted-foreground w-10 text-right">{format!("{:.1}%", percent)}</span> <span class="text-[10px] text-muted-foreground w-10 text-right">{format!("{:.1}%", percent)}</span>
</div> </div>
</DataTableCell> </DataTableCell>
} }.into_any()
}).into_any()} }).into_any()}
{move || visible_columns.get().contains("Status").then({ {move || visible_columns.get().contains("Status").then({
@@ -781,7 +781,7 @@ fn TorrentCard(
</div> </div>
</TorrentContextMenu> </TorrentContextMenu>
}.into_any() }.into_any()
} }.into_any()
} }
</Show> </Show>
}.into_any() }.into_any()

View File

@@ -13,6 +13,7 @@ pub mod dropdown_menu;
pub mod empty; pub mod empty;
pub mod input; pub mod input;
pub mod multi_select; pub mod multi_select;
pub mod progress;
pub mod select; pub mod select;
pub mod separator; pub mod separator;
pub mod sheet; pub mod sheet;