Skip to content
Snippets Groups Projects
Verified Commit bf4e17f2 authored by Marc Hanisch's avatar Marc Hanisch
Browse files

uses .replace to redirect to /basic pages

parent b98ba69b
No related branches found
No related tags found
1 merge request!175Improve links to basic pages
......@@ -64,7 +64,7 @@ export default class ConfigurationsIdPage extends Vue {
created () {
if (this.isBasePath()) {
this.$router.push('/configurations/' + this.configurationId + '/basic')
this.$router.replace('/configurations/' + this.configurationId + '/basic')
}
}
......
......@@ -59,7 +59,7 @@ export default class DevicePage extends Vue {
created () {
if (this.isBasePath()) {
this.$router.push('/devices/' + this.deviceId + '/basic')
this.$router.replace('/devices/' + this.deviceId + '/basic')
}
}
......
......@@ -57,7 +57,7 @@ export default class PlatformPage extends Vue {
created () {
if (this.isBasePath()) {
this.$router.push('/platforms/' + this.platformId + '/basic')
this.$router.replace('/platforms/' + this.platformId + '/basic')
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment