fix the last of the type annotations (still have to fix no-explicit-any warnings)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user