-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Alexwykoff/add sentry link #55
Conversation
@@ -56,6 +57,7 @@ const Main = ({ config }) => { | |||
<Route path='/metadata' component={Metadata} /> | |||
<Route path='/signaling' component={Signaling} /> | |||
<Route path='/system' component={System} /> | |||
<Route path='/sentry' component={Sentry} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/logging
@@ -28,6 +28,7 @@ import Metadata from './panels/Metadata'; | |||
import Signaling from './panels/signal/Signaling'; | |||
import System from './panels/system/System'; | |||
import Registry from './panels/registry/Registry'; | |||
import Sentry from './panels/sentry/Sentry'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logger
|
||
//TODO(wykoff): add query tab, add commonly used info tab | ||
return ( | ||
<Panel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove panel and content (don't need tabs).
Add a Toolbar
with a link (see StatusBar.js
)
<Toolbar className={classes.root}>
<div className={classes.left}>
<Link className={classes.link} href={config.app.website} rel='noreferrer' target='_blank'>
<PublicIcon />
</Link>
</div>
</Toolbar>
Fixes: #53