Skip to content

Commit 87e7d86

Browse files
author
samsep
committed
clean up
1 parent 0c6a168 commit 87e7d86

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

components/ManageSteps/ManageStepsExamples.cjsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ initialData =
1414

1515
storeInstance = store(initialData)
1616

17-
permissions = ['READ']
17+
permissions = ['UPDATE']
1818

1919
component = ->
2020
<Provider store={storeInstance}>

components/StepRow/StepRow.coffee

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ StepRow = React.createClass
2424
handleSubmit : PropTypes.func.isRequired
2525
submitting : PropTypes.bool.isRequired
2626
projectId : PropTypes.string.isRequired
27-
permissions : PropTypes.array.isRequired
2827
stepId : PropTypes.string
2928
isNew : PropTypes.bool
3029

components/StepRow/StepRow.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
width : 162px;
2929
}
3030

31-
button{
31+
button {
32+
3233
&.addButton {
3334
margin-left: 15px;
3435
}

components/StepRow/StepRowView.cjsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ require 'react-datetime/css/react-datetime.css'
55
require 'react-select/dist/react-select.css'
66

77
React = require 'react'
8-
moment = require 'moment'
98
PropTypes = React.PropTypes
109
DateTime = require 'react-datetime'
1110
Select = require 'react-select'
@@ -115,7 +114,6 @@ StepRow = ({
115114
<input type="text" className="DateTime disabled" disabled=true placeholder="Date edit disabled"/>
116115
</div>
117116
else
118-
debugger
119117
<div className="flex middle">
120118
<input type="text" className="name" disabled=true {...name} />
121119

0 commit comments

Comments
 (0)