Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dialog message #319

Merged
merged 2 commits into from
Sep 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ Go to the `SPEC` Tab and hit the `Edit` button. Copy & Paste this [example YAML]

### 4. Execute the DAG

You can execute the example by pressing the `Start` button
You can execute the example by pressing the `Start` button.

*Note: Leave the parameter field in the dialog blank and press OK.*

![example](assets/images/demo.gif?raw=true)

Expand Down
2 changes: 1 addition & 1 deletion admin/src/components/molecules/DAGActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function DAGActions({
) => {
const form = new FormData();
if (params.action == "start") {
let parameters = window.prompt('Please input execute parameters', '');
let parameters = window.prompt('Enter parameters (for default parameters, leave blank and click OK).', '');
if (parameters === null) {//hint cancel
return
}
Expand Down