{
this.updateField(table, index, "secretKey", e.target.value);
}} />
);
},
},
{
title: i18next.t("general:Logo"),
dataIndex: "issuer",
key: "logo",
width: "60px",
render: (text, record, index) => (
{text ? (
) : (
)}
),
},
{
title: i18next.t("general:Action"),
key: "action",
width: "100px",
render: (text, record, index) => {
return (
} size="small" onClick={() => this.upRow(table, index)} />
} size="small" onClick={() => this.downRow(table, index)} />
} size="small" onClick={() => this.deleteRow(table, index)} />
);
},
},
];
return (
(
{this.props.title}
}
>
}
>
)}
/>
);
}
render() {
return (
{
this.renderTable(this.state.mfaAccounts)
}
);
}
}
export default MfaAccountTable;