Skip to content

Commit

Permalink
fix: Optimize the table header #49
Browse files Browse the repository at this point in the history
  • Loading branch information
snoopy1412 committed Jul 2, 2024
1 parent 7a1e548 commit e9194d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/data-table/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const columns: Column[] = [
},
{
dataIndex: 'id',
title: 'Msgid',
title: 'Msg ID',
width: '10rem',
render(value, record, index, network) {
if (record?.status === -1) {
Expand Down Expand Up @@ -155,7 +155,7 @@ export const columns: Column[] = [
},
{
dataIndex: 'timeSpent',
title: 'TimeSpent',
title: 'Time Spent',
width: '5rem',

render(value, record) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/search-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const SearchBar = () => {
<Input
type="search"
name="search"
placeholder="SCAN Source Tx Hash or Msgld"
placeholder="Search by Source Tx Hash/ MsgId"
className="pl-8 placeholder:text-xs sm:w-full lg:w-[600px]"
value={keyword}
onChange={handleKeywordChange}
Expand Down

0 comments on commit e9194d8

Please sign in to comment.