diff options
Diffstat (limited to 'src/client/views')
| -rw-r--r-- | src/client/views/collections/collectionSchema/CollectionSchemaView.tsx | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx index 1b23e3c40..2f62b1c8d 100644 --- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx +++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx @@ -43,6 +43,7 @@ import { DocumentManager } from '../../../util/DocumentManager';  import { TbHemispherePlus } from 'react-icons/tb';  import { docs_v1 } from 'googleapis';  import { SchemaCellField } from './SchemaCellField'; +import { threadId } from 'worker_threads';  const { SCHEMA_NEW_NODE_HEIGHT } = require('../../global/globalCssVariables.module.scss'); // prettier-ignore @@ -370,6 +371,8 @@ export class CollectionSchemaView extends CollectionSubView() {          const currKeys = this.columnKeys.slice();          currKeys.splice(index, 1);          this.layoutDoc.schema_columnKeys = new List<string>(currKeys);  + +        this._colEles.splice(index, 1);      };      @action  | 
