Skip to content
Snippets Groups Projects
Commit 4efb5f3d authored by François Agneray's avatar François Agneray
Browse files

Fixed bug: Admin database columns order

parent de09d2c3
No related branches found
No related tags found
1 merge request!73Develop
Pipeline #9773 passed
Pipeline: anis-next

#9774

    ......@@ -24,8 +24,7 @@ export interface State extends EntityState<Column> {
    }
    export const adapter: EntityAdapter<Column> = createEntityAdapter<Column>({
    selectId: (column: Column) => column.name,
    sortComparer: (a: Column, b: Column) => a.name.localeCompare(b.name)
    selectId: (column: Column) => column.name
    });
    export const initialState: State = adapter.getInitialState({
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment