Skip to content

Commit

Permalink
fix bug that didnt clear output text area when input text area was cl…
Browse files Browse the repository at this point in the history
…eared.
  • Loading branch information
dshaaban01 committed Nov 16, 2023
1 parent bed5a17 commit d603753
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xdsl/interactive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def update_current_module(self) -> None:
"""
input_text = self.input_text_area.text
if (input_text) == "":
self.current_module = None
return
try:
ctx = MLContext(True)
Expand Down

0 comments on commit d603753

Please sign in to comment.