Skip to content

Commit

Permalink
Make task name editable
Browse files Browse the repository at this point in the history
  • Loading branch information
nursix committed Nov 5, 2021
1 parent 0b77d38 commit 6fe7b1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nursix-dev-5174-g2e780b472 (2021-11-05 12:41:45)
nursix-dev-5175-g0b77d382b (2021-11-05 13:06:08)
2 changes: 1 addition & 1 deletion controllers/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ def prep(r):
editable = False,
)

s3task.configure_tasktable_crud(task="", status_writable=True)
s3task.configure_tasktable_crud(status_writable=True)
return True
s3.prep = prep

Expand Down
2 changes: 1 addition & 1 deletion modules/core/tools/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def configure_tasktable_crud(self,
task = str(uuid4())
field = table.task_name
field.default = task
field.readable = field.writable = False
field.readable = field.writable = True

# Function (default+hide if specified as parameter)
if function:
Expand Down

0 comments on commit 6fe7b1e

Please sign in to comment.