Skip to content

Commit f887e6d

Browse files
committed
pr change
1 parent 9d9575b commit f887e6d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

holmes/core/supabase_dal.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,9 @@ def get_runbook_content(
467467
# TODO: remove in the future when we migrate the table data
468468
if isinstance(raw_instruction, list) and len(raw_instruction) == 1:
469469
instruction = raw_instruction[0]
470-
if isinstance(raw_instruction, list) and len(raw_instruction) > 1:
471-
instruction = "\n".join(raw_instruction)
470+
elif isinstance(raw_instruction, list) and len(raw_instruction) > 1:
471+
# not currently used, but will be used in the future
472+
instruction = "\n - ".join(raw_instruction)
472473
elif isinstance(raw_instruction, str):
473474
# not supported by the current UI, but will be supported in the future
474475
instruction = raw_instruction

0 commit comments

Comments
 (0)