Skip to content

Commit

Permalink
fix(pb-table-grid): respect existing search parameter when using incl…
Browse files Browse the repository at this point in the history
…uded search feature
  • Loading branch information
wolfgangmm committed Nov 14, 2024
1 parent 4f09858 commit 7abdd8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pb-table-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export class PbTableGrid extends pbMixin(LitElement) {
this.search ? html`
<iron-form id="form">
<form action="">
<paper-input id="search" name="search" label="Search" @keyup="${(e) => e.keyCode == 13 ? this._submit() : null}">
<paper-input id="search" name="search" label="Search" value="${this._params.search || ''}" @keyup="${(e) => e.keyCode == 13 ? this._submit() : null}">
<paper-icon-button icon="search" @click="${this._submit}" slot="suffix"></paper-icon-button>
</paper-input>
</form>
Expand Down

0 comments on commit 7abdd8f

Please sign in to comment.