Fix issue with multiple filters at the same time and remove unused variable
This commit is contained in:
parent
c906efb972
commit
6dfe2c22af
|
@ -29,13 +29,6 @@
|
|||
filter,
|
||||
} = getContext("grid")
|
||||
|
||||
const bannedDisplayColumnTypes = [
|
||||
"link",
|
||||
"array",
|
||||
"attachment",
|
||||
"boolean",
|
||||
"json",
|
||||
]
|
||||
const searchableTypes = ["string", "options", "number", "array", "longform"]
|
||||
|
||||
let anchor
|
||||
|
|
|
@ -15,7 +15,7 @@ export const createActions = context => {
|
|||
const { filter } = context
|
||||
|
||||
const addInlineFilter = (column, value) => {
|
||||
const filterId = `inline-${column}`
|
||||
const filterId = `inline-${column.name}`
|
||||
const type = column.schema.type
|
||||
let inlineFilter = {
|
||||
field: column.name,
|
||||
|
|
Loading…
Reference in New Issue