Fix linter errors to allow builds to pass
parent
2018f7300a
commit
4be9a1b27a
|
@ -120,8 +120,8 @@ class RowWrapper extends Component {
|
|||
|
||||
handleSubmit(e) {
|
||||
e.preventDefault()
|
||||
const code = e.target.code.value
|
||||
const label = e.target.label.value
|
||||
// const code = e.target.code.value
|
||||
// const label = e.target.label.value
|
||||
|
||||
// updateTempVarsAsync({code, label})
|
||||
}
|
||||
|
|
|
@ -187,11 +187,11 @@ export default function ui(state = initialState, action) {
|
|||
d =>
|
||||
(d.id === dashboardID
|
||||
? {
|
||||
...d,
|
||||
templates: d.templates.map(
|
||||
t => (t.id === templateID ? {...t, ...updates} : t)
|
||||
),
|
||||
}
|
||||
...d,
|
||||
templates: d.templates.map(
|
||||
t => (t.id === templateID ? {...t, ...updates} : t)
|
||||
),
|
||||
}
|
||||
: d)
|
||||
)
|
||||
return {...state, dashboards}
|
||||
|
|
Loading…
Reference in New Issue