Skip to content

Commit 70b6ef3

Browse files
committed
use upload icon for seeding
1 parent 411e3b2 commit 70b6ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/dashboard/base-items/widgets/TorrentClientWidget.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ArrowDownward, ArrowUpward, CheckCircle, Delete, Download, MoreVert, Pause, PlayArrow, Stop, Warning } from '@mui/icons-material';
1+
import { ArrowDownward, ArrowUpward, CheckCircle, Delete, Download, MoreVert, Pause, PlayArrow, Stop, Upload, Warning } from '@mui/icons-material';
22
import { Box, Button, CardContent, CircularProgress, Grid, IconButton, LinearProgress, Link, Menu, MenuItem, TextField, Tooltip, Typography, useMediaQuery } from '@mui/material';
33
import React, { useState } from 'react';
44

@@ -98,7 +98,7 @@ const getStatusIcon = (state: string) => {
9898
switch (state) {
9999
case 'downloading': return <Download sx={{ color: 'white' }} fontSize='small' />;
100100
case 'uploading':
101-
case 'seeding': return <ArrowUpward sx={{ color: 'white' }} fontSize='small' />;
101+
case 'seeding': return <Upload sx={{ color: 'white' }} fontSize='small' />;
102102
case 'pausedDL':
103103
case 'pausedUP': return <Pause sx={{ color: 'white' }} fontSize='small' />;
104104
case 'stalledDL':

0 commit comments

Comments
 (0)