065d699a2d
Clicking support hides everything below fileActions Title of form is Support now One line helper sentence Moved Tx related component to internal Unfiltered -> Show All -> All Claims -> Publishes Fee below Amount(class meta) Dropped Credits everywhere.
19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
import React from "react";
|
|
|
|
class TransactionTableHeader extends React.PureComponent {
|
|
render() {
|
|
const { filter } = this.props;
|
|
return (
|
|
<thead>
|
|
<tr>
|
|
<th>{__("Date")}</th>
|
|
<th>{__("Amount(Fee)")}</th>
|
|
{filter != "unfiltered" && <th> {__("Claim Name")} </th>}
|
|
<th>{__("Transaction")}</th>
|
|
</tr>
|
|
</thead>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TransactionTableHeader;
|