Spaces:
Paused
Paused
Commit
·
e047739
1
Parent(s):
71fac81
fix error
Browse files
src/components/business/videos/columns.tsx
CHANGED
@@ -60,7 +60,7 @@ export const columns: ColumnDef<Video>[] = [
|
|
60 |
cell: ({ row: { original: { progressPercent, status }} }) => (
|
61 |
<div className="flex items-center"><span>{
|
62 |
status === "pending"
|
63 |
-
? `${Number(progressPercent || 0)}
|
64 |
: status === "completed"
|
65 |
? "done"
|
66 |
: status === "abort"
|
|
|
60 |
cell: ({ row: { original: { progressPercent, status }} }) => (
|
61 |
<div className="flex items-center"><span>{
|
62 |
status === "pending"
|
63 |
+
? `${Number(progressPercent || 0)}%`
|
64 |
: status === "completed"
|
65 |
? "done"
|
66 |
: status === "abort"
|