lint
This commit is contained in:
parent
19c1834176
commit
82758032cd
@ -54,10 +54,7 @@ const AppRecords = () => {
|
||||
return (
|
||||
<TableRow key={id} size='small'>
|
||||
<TableCell monospace>
|
||||
{names.map(wrn => <div>
|
||||
<AppLink config={config} wrn={wrn} />
|
||||
</div>
|
||||
)}
|
||||
{names.map(wrn => <div key={wrn}> <AppLink config={config} wrn={wrn} /> </div>)}
|
||||
</TableCell>
|
||||
<TableCell monospace>
|
||||
{version}
|
||||
|
@ -46,7 +46,7 @@ const BotRecords = () => {
|
||||
{records.sort(sorter).map(({ id, names, createTime, attributes: { name: displayName, version } }) => {
|
||||
return (
|
||||
<TableRow key={id} size='small'>
|
||||
<TableCell monospace>{names.map(name => <div>{name}</div>)}</TableCell>
|
||||
<TableCell monospace>{names.map(name => <div key={name}>{name}</div>)}</TableCell>
|
||||
<TableCell monospace>{version}</TableCell>
|
||||
<TableCell>{displayName}</TableCell>
|
||||
<TableCell>{moment.utc(createTime).fromNow()}</TableCell>
|
||||
|
@ -107,7 +107,7 @@ const WNSRecords = ({ type }) => {
|
||||
appLinks = (
|
||||
<>
|
||||
{names.map(wrn =>
|
||||
<div>
|
||||
<div key={wrn}>
|
||||
<AppLink config={config} wrn={wrn} />
|
||||
</div>
|
||||
)}
|
||||
@ -119,7 +119,7 @@ const WNSRecords = ({ type }) => {
|
||||
<TableRow key={id} size='small'>
|
||||
<TableCell monospace>{type}</TableCell>
|
||||
<TableCell monospace>
|
||||
{appLinks || names.map(name => <div>{name}</div>)}
|
||||
{appLinks || names.map(name => <div key={name}>{name}</div>)}
|
||||
</TableCell>
|
||||
<TableCell monospace>
|
||||
{version}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"build": {
|
||||
"name": "@dxos/console-app",
|
||||
"buildDate": "2020-08-27T18:22:17.963Z",
|
||||
"version": "1.0.0-moon.0"
|
||||
"buildDate": "2020-08-27T18:43:11.239Z",
|
||||
"version": "1.1.0-beta.0"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user