Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica-mitchell committed Apr 19, 2024
1 parent d64ec49 commit fe399ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/htmldoc/static/js/filter_models.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function populateTags(data) {
function updateModelDisplay() {
const activeButtons = document.querySelectorAll('.filter-button.is-active');
const selectedTags = Array.from(activeButtons).map(button => button.textContent.split(' ')[0]);
fetch('_static/data/filter_model.json)')
fetch('_static/data/filter_model.json')
.then(response => response.json())
.then(data => {
const filteredModels = filterModelsByTags(data, selectedTags);
Expand Down

0 comments on commit fe399ef

Please sign in to comment.