Skip to content

Commit

Permalink
Add changelog for 0.31.0
Browse files Browse the repository at this point in the history
There are a few other changes, though they only affect the experimental
Routers API. Do we want to mention those here too?
  • Loading branch information
jacobmischka committed Oct 13, 2022
1 parent f2db9d5 commit 36bbc32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 1 addition & 7 deletions src/components/selectTable.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
import { z } from 'zod'
import Logger from '../classes/Logger'
import {
tableRow,
T_IO_PROPS,
menuItem,
T_IO_RETURNS,
T_IO_STATE,
} from '../ioSchema'
import { tableRow, T_IO_PROPS, T_IO_RETURNS, T_IO_STATE } from '../ioSchema'
import { MenuItem, TableColumn } from '../types'
import {
columnsBuilder,
Expand Down
5 changes: 4 additions & 1 deletion src/examples/basic/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,10 @@ export const select_table: IntervalActionHandler = async io => {
defaultPageSize: 500,
columns: [
'id',
'description',
{
label: 'Description',
accessorKey: 'description',
},
'number',
'boolean',
'date',
Expand Down

0 comments on commit 36bbc32

Please sign in to comment.