Skip to content

Commit

Permalink
Fix save taks issue with not existing task.json
Browse files Browse the repository at this point in the history
  • Loading branch information
EinEinfach committed Oct 25, 2023
1 parent 97d0da4 commit c4b89be
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CaSSAndRA/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

#Version:0.95.4 Fixed date range on page call
#Version:0.95.5 Fixed save task issue with not existing task.json
# package imports
import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion CaSSAndRA/src/backend/data/appdata.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import logging
logger = logging.getLogger(__name__)

version = '0.95.4'
version = '0.95.5'
3 changes: 0 additions & 3 deletions CaSSAndRA/src/components/tasks/tasksorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,4 @@ def update_dropdown_tasksorder(rt_isopen: bool,
options.sort()
except:
options = []
if options == []:
current_task.create()
schedule_tasks.create()
return [options]*8

0 comments on commit c4b89be

Please sign in to comment.