Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
spot-web-app
Commits
569d9805
Commit
569d9805
authored
Oct 04, 2018
by
Alexandre Duret-Lutz
Browse files
fix error message on empty formula2
parent
d8edb07f
Pipeline
#4001
passed with stage
in 1 minute and 31 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
client/src/LtlApp.js
View file @
569d9805
...
...
@@ -1476,7 +1476,7 @@ class LtlCompare extends React.Component {
}
updateResult
()
{
if
(
this
.
props
.
formula
===
""
||
this
.
state
.
formula2
===
""
)
{
if
(
this
.
props
.
formula
===
""
||
this
.
props
.
formula2
===
""
)
{
this
.
setState
({
result
:
""
});
return
;
}
...
...
Write
Preview
Supports
Markdown
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