Fix xpath filtering

This commit is contained in:
Gregory Schier
2024-08-08 22:54:15 -07:00
parent 8081c86ec6
commit 3050995fed
12 changed files with 35 additions and 41 deletions

View File

@@ -22,7 +22,7 @@ export function useCreateHttpRequest() {
if (patch.sortPriority === undefined) {
if (activeRequest != null) {
// Place above currently-active request
patch.sortPriority = activeRequest.sortPriority + 0.0001;
patch.sortPriority = activeRequest.sortPriority - 0.0001;
} else {
// Place at the very top
patch.sortPriority = -Date.now();