Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
v2022.08.23.2317
Browse files Browse the repository at this point in the history
  • Loading branch information
proin committed Aug 23, 2022
1 parent c4f70ef commit cb999bf
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/admin.release/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"js": "javascript"
},
"created": "2022-08-23 15:26:51",
"updated": "2022-08-23 21:41:54",
"updated": "2022-08-23 23:17:42",
"title": "/hub/admin/release"
}
7 changes: 7 additions & 0 deletions apps/admin.release/view.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
let wiz_controller = async ($sce, $scope, $timeout) => {
$scope.history = [];

$scope.history.push({
name: "v2022.08.23.2317",
log: [
"[workflow] timer bug fixed (display by each workflow)"
]
});

$scope.history.push({
name: "v2022.08.23.2129",
log: [
Expand Down
7 changes: 5 additions & 2 deletions apps/dizest.workflow.editor/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,11 @@ def cron_list():
cron = CronTab(user=user_id)
for job in cron:
time = " ".join([str(x) for x in job.slices])
comment = ";".join(job.comment.split(";")[1:])
res.append(dict(comment=comment, time=time))
comment = job.comment.split(";")
wpid = comment[0]
if wpid == workflow_id:
comment = ";".join(comment[1:])
res.append(dict(comment=comment, time=time))
except Exception as e:
wiz.response.status(500, e)
wiz.response.status(200, res)
Expand Down
2 changes: 1 addition & 1 deletion apps/dizest.workflow.editor/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
},
"title": "Workflow Editor",
"created": "2022-06-18 16:44:45",
"updated": "2022-08-23 21:49:35"
"updated": "2022-08-23 22:20:33"
}
2 changes: 1 addition & 1 deletion apps/dizest.workflow.editor/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ let wiz_controller = async ($sce, $scope, $render, $alert, $util, $loading, $fil
+ '</div>';
wrapper.append(df);
} else if (value.inputtype == 'textarea') {
wrapper.append('<div class="value-data"><textarea rows=5 class="form-control form-control-sm" placeholder="' + value.description + '" df-' + variable_name + '></textarea></div>');
wrapper.append('<div class="value-data"><textarea rows=5 class="form-control form-control-sm text-left" placeholder="' + value.description + '" df-' + variable_name + '></textarea></div>');
} else {
wrapper.append('<div class="value-data"><input class="form-control form-control-sm" placeholder="' + value.description + '" df-' + variable_name + '/></div>');
}
Expand Down
2 changes: 1 addition & 1 deletion config/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2022.08.23.2129
v2022.08.23.2317

0 comments on commit cb999bf

Please sign in to comment.