Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Jan 14, 2024
1 parent 855bf13 commit a8277bf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
find=Filter...
find=Filter
10 changes: 8 additions & 2 deletions war/src/main/js/filter-build-history.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,17 @@ function loadPage() {
return;
}

document.startViewTransition(() => {
if (!document.startViewTransition) {
xander.innerHTML = responseText;
noBuilds.style.display = "none";
Behaviour.applySubtree(xander);
});
} else {
document.startViewTransition(() => {
xander.innerHTML = responseText;
noBuilds.style.display = "none";
Behaviour.applySubtree(xander);
});
}
});
}
});
Expand Down

0 comments on commit a8277bf

Please sign in to comment.