diff --git a/webapp/packages/core-blocks/src/Tree/TreeNode/ITreeNodeState.ts b/webapp/packages/core-blocks/src/Tree/TreeNode/ITreeNodeState.ts index ea4b281b07..712f03f81d 100644 --- a/webapp/packages/core-blocks/src/Tree/TreeNode/ITreeNodeState.ts +++ b/webapp/packages/core-blocks/src/Tree/TreeNode/ITreeNodeState.ts @@ -11,7 +11,7 @@ export interface ITreeNodeState { disabled?: boolean; loading?: boolean; selected?: boolean; - /** It is true when the node is neither selected nor unselected, used to indicate a mixed or partial selection in a group of sub-options */ + /** It is true when the node is neither selected nor unselected, used to indicate a mixed or partial selection in a group of sub-options */ indeterminateSelected?: boolean; externalExpanded?: boolean; expanded?: boolean; diff --git a/webapp/packages/plugin-data-viewer/src/DatabaseDataModel/IDatabaseDataSource.ts b/webapp/packages/plugin-data-viewer/src/DatabaseDataModel/IDatabaseDataSource.ts index 58db211cdc..8a081b7f7c 100644 --- a/webapp/packages/plugin-data-viewer/src/DatabaseDataModel/IDatabaseDataSource.ts +++ b/webapp/packages/plugin-data-viewer/src/DatabaseDataModel/IDatabaseDataSource.ts @@ -83,7 +83,8 @@ export interface IDatabaseDataSource this; retry: () => Promise; - /** Allows to perform an asynchronous action on the data source, this action will wait previous action to finish and save or load requests. The data source will have a loading and disabled state while performing an action */ + /** Allows to perform an asynchronous action on the data source, this action will wait previous action to finish and save or load requests. + * The data source will have a loading and disabled state while performing an action */ runTask: (task: () => Promise) => Promise; requestData: () => Promise | void; refreshData: () => Promise | void;