fix width of Subscribe column

This commit is contained in:
Collin M. Barrett 2019-08-06 10:37:57 -05:00
parent ddf2a2d734
commit 5906af8454

View file

@ -40,6 +40,7 @@ export class AllListsTable extends React.Component<{}, State> {
dataIndex={nameof<List>("description")} />
<Table.Column<List> title="Subscribe"
dataIndex={nameof<List>("viewUrl")}
width={123}
fixed="right"
render={(text: string, record: List, index: number) => <SubscribeButton key={index} viewUrl={text} viewUrlMirrors={record.viewUrlMirrors} name={record.name} />}
/>