@kaspernj/api-maker 1.0.256 → 1.0.257
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/table/table.jsx +5 -0
package/package.json
CHANGED
package/src/table/table.jsx
CHANGED
|
@@ -329,8 +329,13 @@ class ApiMakerTable extends React.PureComponent {
|
|
|
329
329
|
const {filterSubmitLabel} = this.props
|
|
330
330
|
const {qParams} = digs(this.shape, "qParams")
|
|
331
331
|
|
|
332
|
+
console.log({qParams})
|
|
333
|
+
|
|
332
334
|
return (
|
|
333
335
|
<form className="live-table--filter-form" onSubmit={this.onFilterFormSubmit} ref={filterFormRef}>
|
|
336
|
+
{"s" in qParams &&
|
|
337
|
+
<input name="s" type="hidden" value={qParams.s} />
|
|
338
|
+
}
|
|
334
339
|
{filterContent({
|
|
335
340
|
onFilterChanged: submitFilter,
|
|
336
341
|
onFilterChangedWithDelay: submitFilterDebounce,
|