Run prettier

in-house-export-serialization
Kevin Chung 2020-04-25 12:52:56 -04:00
parent ff2e4c9dd0
commit 1ad520a8e7
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ export default () => {
let url = new URL(window.location); let url = new URL(window.location);
url.searchParams.set("page", this.value); url.searchParams.set("page", this.value);
window.location.href = url.toString(); window.location.href = url.toString();
}) });
makeSortableTables(); makeSortableTables();
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();

View File

@ -31,7 +31,7 @@ export default () => {
let url = new URL(window.location); let url = new URL(window.location);
url.searchParams.set("page", this.value); url.searchParams.set("page", this.value);
window.location.href = url.toString(); window.location.href = url.toString();
}) });
$('[data-toggle="tooltip"]').tooltip(); $('[data-toggle="tooltip"]').tooltip();
}; };