I import Git tree as JSON in Gitgraph for React. I want to color a node for commit with particular hash in red, like on the pic.
Is there a native way in Gitgraph.js to achieve this?
{this.props.git && this.props.git.log &&
<Gitgraph>
{gitgraph => {
gitgraph.import(this.props.git.log)
}}
</Gitgraph>
}
