Skip to content

Commit

Permalink
Bump version, bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Mrzygłód committed Oct 25, 2017
1 parent b469eb8 commit 0c624b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion app/components/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @flow
import React, { Component } from 'react';
import type { Children } from 'react';
import { Sidebar, Button, Form, Header, Icon } from 'semantic-ui-react';
import { Sidebar, Button, Form, Header, Icon, Checkbox } from 'semantic-ui-react';
import { DragDropContextProvider } from 'react-dnd';
import HTML5Backend from 'react-dnd-html5-backend';
import SideMenu from './SideMenu';
Expand All @@ -22,6 +22,8 @@ export default class App extends Component {
openVisualization: () => void,
openToolbox: () => void,
addResource: (resourceType: string) => void,
toggleHierarchicalLayout: () => void,
togglePhysics: () => void,
children: Children,
resources: Array<Resource>,
layout: Object,
Expand Down Expand Up @@ -64,6 +66,8 @@ export default class App extends Component {
Manage graph settings and set preferences.
</Header.Subheader>
</Header>
<Form.Field><Checkbox toggle label="Hierarchical layout?" onChange={() => this.props.toggleHierarchicalLayout()} /></Form.Field>
<Form.Field><Checkbox toggle label="Disable physics?" onChange={() => this.props.togglePhysics()} /></Form.Field>
<Form.Field><Button type="button" fluid onClick={() => this.props.dispatchButtonClick('CLOSE_SETTINGS')}>Close</Button></Form.Field>
</Sidebar>
<Toolbox
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ARMata",
"productName": "ARMata",
"version": "v1.0.0-beta3",
"version": "v1.0.0-beta4",
"description": "ARM templates visualizer & editor",
"main": "./main.prod.js",
"author": {
Expand Down

0 comments on commit 0c624b7

Please sign in to comment.