fix the last of the type annotations (still have to fix no-explicit-any warnings)

This commit is contained in:
2023-09-04 08:03:43 -06:00
parent fd43da93a5
commit a5e0c847b1
9 changed files with 383 additions and 475 deletions

View File

@@ -279,11 +279,8 @@ export default class NewEditProjectView extends Vue {
resp.data.success.handleId || resp.data.success.fullIri,
);
setTimeout(
function (that: Vue) {
const route = {
name: "project",
};
that.$router.push(route);
function (that: NewEditProjectView) {
that.$router.push({ name: "project" });
},
2000,
this,