diff --git a/frontend/src/components/torrent/table.rs b/frontend/src/components/torrent/table.rs index 5d86fc4..1fdc28f 100644 --- a/frontend/src/components/torrent/table.rs +++ b/frontend/src/components/torrent/table.rs @@ -254,7 +254,7 @@ pub fn TorrentTable() -> impl IntoView {
"Status" {move || sort_arrow(SortColumn::Status)}
-
"Down Speed" {move || sort_arrow(SortColumn::DownSpeed)}
+
"DL Speed" {move || sort_arrow(SortColumn::DownSpeed)}
"Up Speed" {move || sort_arrow(SortColumn::UpSpeed)}
@@ -345,7 +345,7 @@ pub fn TorrentTable() -> impl IntoView { (SortColumn::Size, "Size"), (SortColumn::Progress, "Progress"), (SortColumn::Status, "Status"), - (SortColumn::DownSpeed, "Down Speed"), + (SortColumn::DownSpeed, "DL Speed"), (SortColumn::UpSpeed, "Up Speed"), (SortColumn::ETA, "ETA"), (SortColumn::AddedDate, "Date"),