Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
AURA
dashboard
Commits
f1757e6a
Commit
f1757e6a
authored
Sep 14, 2020
by
Richard Blechinger
Browse files
Remove unnecessary console log
parent
5c4ffcce
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/components/shows/MetaSimpleTypes.vue
View file @
f1757e6a
...
...
@@ -359,12 +359,16 @@ export default {
},
methods
:
{
openModalEmail
()
{
this
.
emailState
=
null
;
if
(
this
.
selectedShow
.
email
!==
null
)
{
this
.
email
=
this
.
selectedShow
.
email
}
else
{
this
.
email
=
''
}
this
.
$refs
.
modalEmail
.
show
()
},
openModalWebsite
()
{
this
.
urlState
=
null
;
if
(
this
.
selectedShow
.
website
!==
null
)
{
this
.
url
=
this
.
selectedShow
.
website
}
else
{
this
.
url
=
''
}
this
.
$refs
.
modalWebsite
.
show
()
...
...
@@ -418,7 +422,6 @@ export default {
saveEmail
()
{
const
valid
=
this
.
$refs
.
emailForm
.
checkValidity
();
console
.
log
(
valid
);
this
.
emailState
=
valid
;
if
(
!
valid
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment