change column width of Townhall table

This commit is contained in:
jinhojang6 2020-02-17 01:11:39 +09:00
parent 34257f3d0a
commit 763dcc8ee0
No known key found for this signature in database
GPG Key ID: 0E7AA62CB0D9E6F3
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ const TownhallTable = ({ townhallData }) => {
const tableColumns = [
{
title: "ID",
width: '10%',
dataIndex: "key",
key: "id",
sorter: (a, b) => a.key - b.key,
@ -17,6 +18,7 @@ const TownhallTable = ({ townhallData }) => {
},
{
title: "Title",
width: '30%',
dataIndex: "title",
key: "title"
},