fix lint issues
This commit is contained in:
parent
de944480da
commit
3b099d945a
|
@ -23,7 +23,7 @@
|
|||
dropdown.show()
|
||||
}
|
||||
|
||||
const openMenu = (event) => {
|
||||
const openMenu = event => {
|
||||
if (!disabled) {
|
||||
event.stopPropagation()
|
||||
show()
|
||||
|
|
|
@ -21,9 +21,7 @@
|
|||
|
||||
function checkValid(evt) {
|
||||
const datasourceName = evt.target.value
|
||||
if (
|
||||
$datasources?.list.some(ds => ds.name === datasourceName)
|
||||
) {
|
||||
if ($datasources?.list.some(ds => ds.name === datasourceName)) {
|
||||
error = `Datasource with name ${datasourceName} already exists. Please choose another name.`
|
||||
return
|
||||
}
|
||||
|
@ -59,4 +57,3 @@
|
|||
/>
|
||||
</ModalContent>
|
||||
</Modal>
|
||||
|
||||
|
|
Loading…
Reference in New Issue