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: { computed: {
uri: { uri: {
get() { get() {
return this.$store.state.request.uri ? return this.url + this.path ?
this.$store.state.request.uri this.url + this.path
: this.url + this.path; : this.$store.state.request.uri;
}, },
set(value) { set(value) {
this.$store.commit("setState", { value, attribute: "uri" }) this.$store.commit("setState", { value, attribute: "uri" })