mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where unable to change the column properties from edit dialog. Fixes #6766
This commit is contained in:
committed by
Akshay Joshi
parent
a8c8ea69e3
commit
a1aa080956
@@ -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', ()=>{
|
||||
|
||||
Reference in New Issue
Block a user