Make config saving error messages more verbose
parent
c71c4ac648
commit
93f96a72f3
|
@ -85,10 +85,11 @@ class AlertTabs extends Component {
|
||||||
text: `Alert configuration for ${section} successfully saved.`,
|
text: `Alert configuration for ${section} successfully saved.`,
|
||||||
})
|
})
|
||||||
return true
|
return true
|
||||||
} catch (error) {
|
} catch ({data: {error}}) {
|
||||||
|
const errorMsg = _.join(_.drop(_.split(error, ': '), 2), ': ')
|
||||||
this.props.addFlashMessage({
|
this.props.addFlashMessage({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
text: `There was an error saving the alert configuration for ${section}.`,
|
text: `There was an error saving the alert configuration for ${section}. ${errorMsg}`,
|
||||||
})
|
})
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue