inputs icon indicating copy to clipboard operation
inputs copied to clipboard

Inputs.table skips null values even with custom format callback

Open mootari opened this issue 2 years ago • 0 comments

In the following example

Inputs.table([{foo: 1, bar: null}], {
  format: {bar: JSON.stringify}
})

the format callback is never called, making it impossible to apply custom formatting to nullish values.

Please note that this issue is only concerned with the behavior when a custom format callback is provided. For changes to the default formatter see #164.

mootari avatar May 08 '23 12:05 mootari