Skip to content

Commit

Permalink
fix: improve ProviderTable column UI
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Apr 30, 2024
1 parent 8d08140 commit bafa805
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/table/ProviderTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ProviderTable extends React.Component {
title: i18next.t("user:Country/Region"),
dataIndex: "countryCode",
key: "countryCode",
width: "80px",
width: "140px",
render: (text, record, index) => {
if (record.provider?.category !== "SMS") {
return null;
Expand Down Expand Up @@ -227,7 +227,7 @@ class ProviderTable extends React.Component {
title: i18next.t("application:Rule"),
dataIndex: "rule",
key: "rule",
width: "120px",
width: "160px",
render: (text, record, index) => {
if (record.provider?.type === "Google") {
if (text === "None") {
Expand Down

0 comments on commit bafa805

Please sign in to comment.