summaryrefslogtreecommitdiff
path: root/app/client/common
diff options
context:
space:
mode:
Diffstat (limited to 'app/client/common')
-rw-r--r--app/client/common/button.component.js2
-rw-r--r--app/client/common/param.component.js6
-rw-r--r--app/client/common/paramGroup.component.js2
-rw-r--r--app/client/common/select.component.js2
-rw-r--r--app/client/common/slider.component.js2
5 files changed, 6 insertions, 8 deletions
diff --git a/app/client/common/button.component.js b/app/client/common/button.component.js
index 746a3f6..21aa5b6 100644
--- a/app/client/common/button.component.js
+++ b/app/client/common/button.component.js
@@ -1,7 +1,7 @@
import { h, Component } from 'preact'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
-import * as liveActions from '../live/actions'
+import * as liveActions from '../live/live.actions'
class Button extends Component {
constructor(props){
diff --git a/app/client/common/param.component.js b/app/client/common/param.component.js
index e788118..b2aefd3 100644
--- a/app/client/common/param.component.js
+++ b/app/client/common/param.component.js
@@ -8,10 +8,8 @@ export default class Param extends Component {
render() {
return (
<div className='button param'>
- <label>
- <span>{this.props.title}</span>
- <span>{this.props.children}</span>
- </label>
+ <span>{this.props.title}</span>
+ <span>{this.props.children}</span>
</div>
)
}
diff --git a/app/client/common/paramGroup.component.js b/app/client/common/paramGroup.component.js
index 6dd45f6..13b46a5 100644
--- a/app/client/common/paramGroup.component.js
+++ b/app/client/common/paramGroup.component.js
@@ -1,7 +1,7 @@
import { h, Component } from 'preact'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
-import * as liveActions from '../live/actions'
+import * as liveActions from '../live/live.actions'
class ParamGroup extends Component {
constructor(props){
diff --git a/app/client/common/select.component.js b/app/client/common/select.component.js
index cfe4ebf..90bc6dc 100644
--- a/app/client/common/select.component.js
+++ b/app/client/common/select.component.js
@@ -1,7 +1,7 @@
import { h, Component } from 'preact'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
-import * as liveActions from '../live/actions'
+import * as liveActions from '../live/live.actions'
class Select extends Component {
constructor(props){
diff --git a/app/client/common/slider.component.js b/app/client/common/slider.component.js
index 174877d..942640a 100644
--- a/app/client/common/slider.component.js
+++ b/app/client/common/slider.component.js
@@ -1,7 +1,7 @@
import { h, Component } from 'preact'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
-import * as liveActions from '../live/actions'
+import * as liveActions from '../live/live.actions'
const SLIDER_THROTTLE_TIME = 100