Skip to content

Commit

Permalink
CB-4779 grid perfomance
Browse files Browse the repository at this point in the history
  • Loading branch information
devnaumov committed Mar 1, 2024
1 parent 3b2fd28 commit 393a653
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
import { action, makeObservable, observable } from 'mobx';
import { action, computed, makeObservable, observable } from 'mobx';

import { DataTypeLogicalOperation, ResultDataFormat, SqlResultColumn } from '@cloudbeaver/core-sdk';

Expand Down Expand Up @@ -55,6 +55,10 @@ export class ResultSetViewAction extends DatabaseDataAction<any, IDatabaseResult
makeObservable<this, 'columnsOrder'>(this, {
columnsOrder: observable,
setColumnOrder: action,
rows: computed,
rowKeys: computed,
columns: computed,
columnKeys: computed,
});
}

Expand Down

0 comments on commit 393a653

Please sign in to comment.