Minor get uri update

This commit is contained in:
Jacob Anavisca
2020-02-25 22:52:58 -05:00
parent caf07cd8ba
commit eac8381981

View File

@@ -1517,9 +1517,9 @@ export default {
computed: {
uri: {
get() {
return this.$store.state.request.uri ?
this.$store.state.request.uri
: this.url + this.path;
return this.url + this.path ?
this.url + this.path
: this.$store.state.request.uri;
},
set(value) {
this.$store.commit("setState", { value, attribute: "uri" })