Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
27edc58d
authored
Jun 17, 2023
by
JustSong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: reduce the table size (close #174)
parent
faa967f6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
web/src/components/ChannelsTable.js
+1
-1
web/src/components/RedemptionsTable.js
+1
-1
web/src/components/TokensTable.js
+1
-1
web/src/components/UsersTable.js
+4
-2
No files found.
web/src/components/ChannelsTable.js
View file @
27edc58d
...
...
@@ -262,7 +262,7 @@ const ChannelsTable = () => {
/
>
<
/Form
>
<
Table
basic
>
<
Table
basic
compact
size
=
'small'
>
<
Table
.
Header
>
<
Table
.
Row
>
<
Table
.
HeaderCell
...
...
web/src/components/RedemptionsTable.js
View file @
27edc58d
...
...
@@ -152,7 +152,7 @@ const RedemptionsTable = () => {
/
>
<
/Form
>
<
Table
basic
>
<
Table
basic
compact
size
=
'small'
>
<
Table
.
Header
>
<
Table
.
Row
>
<
Table
.
HeaderCell
...
...
web/src/components/TokensTable.js
View file @
27edc58d
...
...
@@ -161,7 +161,7 @@ const TokensTable = () => {
/
>
<
/Form
>
<
Table
basic
>
<
Table
basic
compact
size
=
'small'
>
<
Table
.
Header
>
<
Table
.
Row
>
<
Table
.
HeaderCell
...
...
web/src/components/UsersTable.js
View file @
27edc58d
...
...
@@ -156,7 +156,7 @@ const UsersTable = () => {
/
>
<
/Form
>
<
Table
basic
>
<
Table
basic
compact
size
=
'small'
>
<
Table
.
Header
>
<
Table
.
Row
>
<
Table
.
HeaderCell
...
...
@@ -240,7 +240,9 @@ const UsersTable = () => {
/>
<
/Table.Cell
>
<
Table
.
Cell
>
{
renderGroup
(
user
.
group
)}
<
/Table.Cell
>
<
Table
.
Cell
>
{
user
.
email
?
renderText
(
user
.
email
,
20
)
:
'无'
}
<
/Table.Cell
>
<
Table
.
Cell
>
{
user
.
email
?
<
Popup
hoverable
content
=
{
user
.
email
}
trigger
=
{
<
span
>
{
renderText
(
user
.
email
,
24
)}
<
/span>} /
>
:
'无'
}
<
/Table.Cell
>
<
Table
.
Cell
>
<
Popup
content
=
'剩余额度'
trigger
=
{
<
Label
>
{
renderNumber
(
user
.
quota
)}
<
/Label>} /
>
<
Popup
content
=
'已用额度'
trigger
=
{
<
Label
>
{
renderNumber
(
user
.
used_quota
)}
<
/Label>} /
>
...
...
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