Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
d863fa6b
Commit
d863fa6b
authored
Oct 28, 2025
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated transaction type on the transaction table
parent
9382c249
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
TransactionTable.tsx
...dashboard/adminDashboard/transaction/TransactionTable.tsx
+5
-5
No files found.
src/components/pages/dashboard/adminDashboard/transaction/TransactionTable.tsx
View file @
d863fa6b
...
...
@@ -84,16 +84,16 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
},
},
{
accessorKey
:
"
method
"
,
header
:
({
column
})
=>
<
SortableHeader
column=
{
column
}
label=
"
Method
"
/>,
accessorKey
:
"
type
"
,
header
:
({
column
})
=>
<
SortableHeader
column=
{
column
}
label=
"
Transaction Type
"
/>,
},
{
accessorKey
:
"game_name"
,
header
:
({
column
})
=>
<
SortableHeader
column=
{
column
}
label=
"Game Name"
/>,
},
{
accessorKey
:
"
type
"
,
header
:
({
column
})
=>
<
SortableHeader
column=
{
column
}
label=
"
Type
"
/>,
accessorKey
:
"
status
"
,
header
:
({
column
})
=>
<
SortableHeader
column=
{
column
}
label=
"
Status
"
/>,
cell
:
({
row
})
=>
{
const
status
=
row
.
original
.
status
.
toLowerCase
();
const
display
=
status
.
charAt
(
0
).
toUpperCase
()
+
status
.
slice
(
1
);
...
...
@@ -228,7 +228,7 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
setValue
:
(
value
)
=>
setSelectedTransationType
(
value
as
string
),
options
:
[
{
label
:
"All"
,
value
:
""
},
{
label
:
"Withdraw
n"
,
value
:
"withdrawn
"
},
{
label
:
"Withdraw
l"
,
value
:
"withdrawl
"
},
{
label
:
"Deposit"
,
value
:
"deposit"
},
],
placeholder
:
"Filter by Transaction Type"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment