We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9575b commit f887e6dCopy full SHA for f887e6d
holmes/core/supabase_dal.py
@@ -467,8 +467,9 @@ def get_runbook_content(
467
# TODO: remove in the future when we migrate the table data
468
if isinstance(raw_instruction, list) and len(raw_instruction) == 1:
469
instruction = raw_instruction[0]
470
- if isinstance(raw_instruction, list) and len(raw_instruction) > 1:
471
- instruction = "\n".join(raw_instruction)
+ elif isinstance(raw_instruction, list) and len(raw_instruction) > 1:
+ # not currently used, but will be used in the future
472
+ instruction = "\n - ".join(raw_instruction)
473
elif isinstance(raw_instruction, str):
474
# not supported by the current UI, but will be supported in the future
475
instruction = raw_instruction
0 commit comments