Skip to content

Commit

Permalink
merged pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
thehitechpanky committed Jun 13, 2020
1 parent fc4dfa8 commit 400cd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion table.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class DynamicTable {

constructor(paramObject) {
this.paramObject = paramObject;
this.divNode = this._getNode("div");
this.divNode = this._getNode(`div`);
this._clearNode(this.divNode);
this.filterNode = this._getNode(`input`, { type: `text`, className: `form-control`, placeholder: `Type here to search...` });
this.limitNode = this._getLimitNode();
Expand Down

0 comments on commit 400cd6b

Please sign in to comment.