mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-06-20 03:38:28 +08:00
fix issue with editing boolean fields (fix #2536)
This commit is contained in:
@@ -82,7 +82,9 @@ class EditItem extends Component {
|
||||
refs[colName].valueNode = node;
|
||||
};
|
||||
const clicker = e => {
|
||||
e.target.closest('.radio-inline').click();
|
||||
e.target
|
||||
.closest('.radio-inline')
|
||||
.querySelector('input[type="radio"]').checked = true;
|
||||
e.target.focus();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user