https://dagster.io/ logo
Title
c

Casper Weiss Bang

01/19/2023, 6:32 AM
Am i missing something, or is it not possible to fill in default values in the launch pad on jobs?
:dagster-bot-resolve: 1
j

J

01/19/2023, 9:19 AM
Yes you can Just do:
@job(
    config={
        'ops': {
            'your_op_name': {
                'config': {
                    'some_key': 10
                }
            }
        }
    }
)
then it will autofill it in the launchpasd
c

Casper Weiss Bang

01/19/2023, 11:25 AM
I was more thinking to easily insert the values i have as default in the graphs etc. I can see them in the right side of the screen, but not easily auto fill them in.
c

chris

01/21/2023, 1:14 AM
This feels like a reasonable request- I added an issue for it https://github.com/dagster-io/dagster/issues/11828
c

Casper Weiss Bang

01/23/2023, 7:47 AM
thanks!