diff --git a/src/routes/route_check/path_placemaking_check/Progress.svelte b/src/routes/route_check/path_placemaking_check/Progress.svelte index 4889dfce9c1..f473c768627 100644 --- a/src/routes/route_check/path_placemaking_check/Progress.svelte +++ b/src/routes/route_check/path_placemaking_check/Progress.svelte @@ -1,45 +1,99 @@
    - {#each questions as label, idx} -
  1. -
    - {#if currentIdx - startIdx != idx} - - {label} - - {:else} - {label} - {/if} - {#if completed[idx]} - Done - {:else} - Incomplete + {#each flatten(sections) as item} + {#if item.kind == "section"} +
    + {item.label} + {#if item.notes} +

    {item.notes}

    {/if}
    -
  2. + {:else} +
  3. +
    + {#if currentIdx - startIdx != item.idx} + + {item.label} + + {:else} + {item.label} + {/if} + {#if completed[item.idx]} + Done + {:else} + Incomplete + {/if} +
    +
  4. + {/if} {/each}