member signin redirect

This commit is contained in:
geek 2017-08-14 18:38:56 +09:00
parent f3f26ec8d4
commit a8dee8cebf

View File

@ -9,7 +9,7 @@ import {
import NoAuthProbe from '@overflow/noauthprobe/api/model/NoAuthProbe';
import Domain from '@overflow/domain/api/model/Domain';
import { ListContainer } from '@overflow/commons/react/component/ListContainer';
import * as Utils from '@overflow/commons/util/Utils';
export interface StateProps {
noauthList?: NoAuthProbe[];
}
@ -140,7 +140,7 @@ export class NoauthProbeList extends React.Component<Props, State> {
<Table.Cell textAlign={'center'}>{probe.ipAddress}</Table.Cell>
<Table.Cell textAlign={'center'}>{probe.macAddress}</Table.Cell>
<Table.Cell>{probe.hostName}</Table.Cell>
<Table.Cell textAlign={'center'}></Table.Cell>
<Table.Cell textAlign={'center'}>{Utils.date2date(probe.createDate)}</Table.Cell>
<Table.Cell textAlign={'center'}>{probe.apiKey}</Table.Cell>
</Table.Row>
));