We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09471d commit 0ee9b20Copy full SHA for 0ee9b20
.github/pull_request_template.md
@@ -23,4 +23,4 @@ List general components of the application that this PR will affect:
23
24
## Additional Notes
25
26
-This is optional, feel free to follow your hearth and write here :)
+This is optional, feel free to follow your heart and write here :)
src/utils/data-manager.js
@@ -217,7 +217,9 @@ export default class DataManager {
217
}
218
219
changeFilterValue(columnId, value) {
220
- this.columns[columnId].tableData.filterValue = value;
+ const column = this.columns.find((c) => c.tableData.id === columnId);
221
+
222
+ column.tableData.filterValue = value;
223
this.filtered = false;
224
225
0 commit comments