mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 18:01:59 +00:00
11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
import { transformTableStateToQuery } from 'utils';
|
|
|
|
/**
|
|
* Transformes the table state to list query.
|
|
*/
|
|
export const transformAccountsStateToQuery = (tableState) => {
|
|
return {
|
|
...transformTableStateToQuery(tableState),
|
|
inactive_mode: tableState.inactiveMode,
|
|
}
|
|
} |