diff --git a/src/ansibleguy-webui/aw/model/job.py b/src/ansibleguy-webui/aw/model/job.py index 152bfe3..4a1708f 100644 --- a/src/ansibleguy-webui/aw/model/job.py +++ b/src/ansibleguy-webui/aw/model/job.py @@ -108,7 +108,7 @@ class Job(BaseJob): execution_prompts_max_len = 5000 execution_prompt_separator = ';' execution_prompt_arg_separator = '#' - execution_prompts = models.CharField(max_length=execution_prompts_max_len, **DEFAULT_NONE) + execution_prompts = models.CharField(max_length=execution_prompts_max_len, default='limit,mode_check,tags') def __str__(self) -> str: limit = '' if self.limit is None else f' [{self.limit}]'