From 155dd0719377d883b5fabc96d53e8d70bb020bc4 Mon Sep 17 00:00:00 2001 From: spinline Date: Thu, 12 Feb 2026 22:20:56 +0300 Subject: [PATCH] fix: resolve tw_merge macro and MultiSelect prop errors in torrent table --- frontend/src/components/torrent/table.rs | 49 +++++++++++++----------- 1 file changed, 26 insertions(+), 23 deletions(-) diff --git a/frontend/src/components/torrent/table.rs b/frontend/src/components/torrent/table.rs index 29ba643..6c52ab5 100644 --- a/frontend/src/components/torrent/table.rs +++ b/frontend/src/components/torrent/table.rs @@ -9,12 +9,13 @@ use crate::components::context_menu::TorrentContextMenu; use crate::components::ui::card::{Card, CardHeader, CardTitle, CardContent as CardBody}; use crate::components::ui::data_table::*; use crate::components::ui::checkbox::Checkbox; -use crate::components::ui::button::{Button, ButtonVariant, ButtonSize}; +use crate::components::ui::button::{Button, ButtonVariant}; use crate::components::ui::empty::*; use crate::components::ui::input::Input; use crate::components::ui::multi_select::*; use crate::components::ui::dropdown_menu::*; use crate::components::ui::alert_dialog::*; +use tailwind_fuse::tw_merge; const ALL_COLUMNS: [(&str, &str); 8] = [ ("Name", "Name"), @@ -332,28 +333,30 @@ pub fn TorrentTable() -> impl IntoView { // Desktop Columns Menu - +