()
| 278 | } |
| 279 | |
| 280 | render() { |
| 281 | if (this.state.exit) { |
| 282 | return <Redirect to={`/keyring/key/${this.props.match.params.keyFpr}`} />; |
| 283 | } |
| 284 | return ( |
| 285 | <div className="card-body user"> |
| 286 | <nav aria-label="breadcrumb"> |
| 287 | <ol className="breadcrumb bg-transparent p-0"> |
| 288 | <li className="breadcrumb-item"><Link to={`/keyring/key/${this.props.match.params.keyFpr}`} replace tabIndex="0"><span className="icon icon-arrow-left" aria-hidden="true"></span> {this.state.keyDetails.name}</Link></li> |
| 289 | </ol> |
| 290 | </nav> |
| 291 | {this.state.loading ? ( |
nothing calls this directly
no outgoing calls
no test coverage detected