diff --git a/src/notebook.jl b/src/notebook.jl
index 4d4b7cf..9c9e54f 100644
--- a/src/notebook.jl
+++ b/src/notebook.jl
@@ -1414,7 +1414,7 @@ p-frame-controls {
""")
# ╔═╡ e968fc57-d850-4e2d-9410-8777d03b7b3c
-function frames(fs::Vector, startframe = nothing)
+function frames(fs::Vector; startframe::Union{Nothing,Int}=nothing)
l = length(fs)
startframe = if isnothing(startframe)
@@ -1623,7 +1623,10 @@ begin
- $(frames(SlottedDisplay.( call.steps)))
+ $(frames(
+ SlottedDisplay.( call.steps);
+ startframe=isa(call,Pass) ? 1 : nothing,
+ ))