Skip to content

Commit

Permalink
[wizard] Redirect app: Remove debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
mayakokits authored and torotil committed Jan 11, 2018
1 parent 0fae26e commit 9990066
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Expand Up @@ -83,14 +83,12 @@ export default {
},
destination: {
get () {
console.log('get destination')
return {
value: this.currentRedirect.destination,
label: this.currentRedirect.prettyDestination
}
},
set (val) {
console.log('set destination')
this.currentRedirect.destination = val.value
this.currentRedirect.prettyDestination = val.label
}
Expand Down Expand Up @@ -153,7 +151,6 @@ export default {
mounted () {
this.$root.$on('newRedirect', () => {
console.log('caught event on bus: new')
this.currentRedirect = emptyRedirect()
this.$store.commit('editNewRedirect')
})
Expand Down
1 change: 0 additions & 1 deletion campaignion_wizard/redirects_app/src/store/mutations.js
Expand Up @@ -3,7 +3,6 @@ import {clone} from '@/utils'

export default {
editNewRedirect (state) {
console.log('mutation: editNewRedirect')
state.currentRedirectIndex = -1
},

Expand Down
1 change: 0 additions & 1 deletion campaignion_wizard/redirects_app/src/utils/api.js
Expand Up @@ -14,7 +14,6 @@ export default {
return new Promise().resolve()
},
getNodes: function ({url, queryParam, queryString, headers}) {
console.log('api - url: ' + url)
// Mock server response:
return new Promise(function (resolve, reject) {
setTimeout(function () {
Expand Down

0 comments on commit 9990066

Please sign in to comment.