mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
chop long line
This commit is contained in:
parent
488b85855f
commit
0dbcfd6987
1 changed files with 4 additions and 1 deletions
|
|
@ -45,7 +45,10 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
dataIndex={nameof<List>("viewUrl")}
|
||||
width={123}
|
||||
fixed="right"
|
||||
render={(text: string, record: List, index: number) => <div><SubscribeButton key={index} viewUrl={text} viewUrlMirrors={record.viewUrlMirrors} name={record.name} /></div>}
|
||||
render={(text: string, record: List, index: number) =>
|
||||
<div>
|
||||
<SubscribeButton key={index} viewUrl={text} viewUrlMirrors={record.viewUrlMirrors} name={record.name} />
|
||||
</div>}
|
||||
/>
|
||||
</Table>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue