
- Moved the various tabs on the draft view to their own views. - Renames modes to views - Started to group various aspects of the workbench state under `_state` in the gist to prevent it from getting all mixed up with the core settings. - Updated events title to make it more clear not all events might be present - Removed valid state in measurements input since it was only getting updated on keyboard input but now when preloading measurements (which it does now)
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import Yaml from 'shared/components/yaml.js'
|
|
|
|
const GistAsYaml = props => (
|
|
<div className="max-w-screen-xl m-auto">
|
|
<Yaml json={JSON.stringify(props.gist, null, 2)} />
|
|
</div>
|
|
)
|
|
|
|
export default GistAsYaml
|