Skip to content

Commit

Permalink
Change button name to Activate Filters
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Esser <[email protected]>
  • Loading branch information
steven-esser committed Jul 24, 2018
1 parent 93d7e54 commit 20e37e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/app/js/controllers/aboutCodeClueDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class AboutCodeClueDataTable extends Controller {
// keep the buttons horizontally aligned
footer.css('white-space', 'nowrap');

const genFiltersButton = $(`<button id="gen-filters-button" type="button">Generate Filters</button>`);
const genFiltersButton = $(`<button id="activate-filters-button" type="button">Activate Filters</button>`);
const clearFiltersButton = $(`<button id="clear-filters-button" type="button">Clear Filters</button>`);

footer.append(genFiltersButton);
Expand Down
2 changes: 1 addition & 1 deletion assets/app/js/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ $(document).ready(() => {
updateViewsByPath(node.id);
});

$(document).on('click', '#gen-filters-button', () => {
$(document).on('click', '#activate-filters-button', () => {
cluesTable.genFilters();
updateViewsByPath(cluesTable._selectedPath);
});
Expand Down

0 comments on commit 20e37e0

Please sign in to comment.