We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my web interface, I've saved multiple portfolios. I would like to be able to hide the ones I want.
At the bottom of the interface, in the "exchanges" section, we can add a "hide/show" button next to the "edit" button.
The text was updated successfully, but these errors were encountered:
In the store, add a hide boolean (default : false)
hide
false
{ [exchangeId]: { loading: boolean error: object|string lastUpdated: number data: { [symbol]: number - amount of target symbol in account } } }
In the portfolio.js file, in the fetchAllPortfolioData constant, filter the exchanges which have the hide value to false.
In the ExchangesListContainer/index.js file, line 113, add:
<td className="u-textCenter"> <Button isOutlined isSize="small" isColor="black" onClick={() => togglePortfolioData(id)} > hide </Button> </td>
The togglePortfolioData function should:
Sorry, something went wrong.
No branches or pull requests
In my web interface, I've saved multiple portfolios. I would like to be able to hide the ones I want.
At the bottom of the interface, in the "exchanges" section, we can add a "hide/show" button next to the "edit" button.
The text was updated successfully, but these errors were encountered: