Merge pull request #332 from dod-ccpo/fix-toggler

Prevent toggler from submitting form
This commit is contained in:
montana-mil 2018-09-25 13:29:04 -04:00 committed by GitHub
commit 60e4b33a3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,7 @@ export default {
methods: { methods: {
toggle: function (e) { toggle: function (e) {
e.preventDefault()
this.isVisible = !this.isVisible this.isVisible = !this.isVisible
} }
} }