From b0426b6b6ccb9b5ee3f3401925ecdbde4f93fc54 Mon Sep 17 00:00:00 2001 From: Rishichandra Wawhal Date: Mon, 13 Apr 2020 15:33:14 +0530 Subject: [PATCH 1/2] fix #4385 --- .../Services/Actions/Common/components/TypeDefinitionEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/src/components/Services/Actions/Common/components/TypeDefinitionEditor.js b/console/src/components/Services/Actions/Common/components/TypeDefinitionEditor.js index bb82dcedde814..fdd66ae3b9b16 100644 --- a/console/src/components/Services/Actions/Common/components/TypeDefinitionEditor.js +++ b/console/src/components/Services/Actions/Common/components/TypeDefinitionEditor.js @@ -35,7 +35,7 @@ const ActionDefinitionEditor = ({ const parseDebounceTimer = setTimeout(() => { if (v === '') { - return; + return onChange(v, null, null, null); } let _e = null; let ast = null; From 1033ce482aaf9e39bc1e20222d917c7f9224b5dd Mon Sep 17 00:00:00 2001 From: Rishichandra Wawhal Date: Mon, 13 Apr 2020 15:44:51 +0530 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c47be007b7ae..ac6cae64dce64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The order and collapsed state of columns is now persisted across page navigation - cli: clean up migration files created during a failed migrate api (close #4312) (#4319) - cli: add support for multiple versions of plugin (close #4105) - cli: template assets path in console HTML for unversioned builds +- console: recover from SDL parse in actions type definition editor (fix #4385) (#4389) - console: allow customising graphql field names for columns of views (close #3689) (#4255) - console: fix clone permission migrations (close #3985) (#4277) - console: decouple data rows and count fetch in data browser to account for really large tables (close #3793) (#4269)