Add files via upload
This commit is contained in:
parent
0426629a59
commit
0c2758baf1
@ -241,11 +241,11 @@ export default {
|
|||||||
},
|
},
|
||||||
prev() {
|
prev() {
|
||||||
this.hoverNav = false;
|
this.hoverNav = false;
|
||||||
this.$router.push({ path: this.previousLink });
|
this.$router.replace({ path: this.previousLink });
|
||||||
},
|
},
|
||||||
next() {
|
next() {
|
||||||
this.hoverNav = false;
|
this.hoverNav = false;
|
||||||
this.$router.push({ path: this.nextLink });
|
this.$router.replace({ path: this.nextLink });
|
||||||
},
|
},
|
||||||
key(event) {
|
key(event) {
|
||||||
if (this.show !== null) {
|
if (this.show !== null) {
|
||||||
@ -341,7 +341,7 @@ export default {
|
|||||||
this.$store.commit("updateRequest", {});
|
this.$store.commit("updateRequest", {});
|
||||||
|
|
||||||
let uri = url.removeLastDir(this.$route.path) + "/";
|
let uri = url.removeLastDir(this.$route.path) + "/";
|
||||||
this.$router.push({ path: uri });
|
this.$router.replace({ path: uri });
|
||||||
},
|
},
|
||||||
download() {
|
download() {
|
||||||
api.download(null, this.$route.path);
|
api.download(null, this.$route.path);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user