Fixed an issue where unable to change the column properties from edit dialog. Fixes #6766

This commit is contained in:
Aditya Toshniwal
2021-09-22 18:23:40 +05:30
committed by Akshay Joshi
parent a8c8ea69e3
commit a1aa080956
3 changed files with 13 additions and 13 deletions

View File

@@ -202,13 +202,13 @@ describe('ColumnSchema', ()=>{
expect(schemaObj.inSchemaWithColumnCheck(state)).toBe(true);
schemaObj.nodeInfo = {};
expect(schemaObj.inSchemaWithColumnCheck(state)).toBe(false);
expect(schemaObj.inSchemaWithColumnCheck(state)).toBe(true);
});
it('editableCheckForTable', ()=>{
let state = {};
schemaObj.nodeInfo = {};
expect(schemaObj.editableCheckForTable(state)).toBe(true);
expect(schemaObj.editableCheckForTable(state)).toBe(false);
});
it('depChange', ()=>{