Skip to content

Commit 5688c14

Browse files
committed
Fixes #18
1 parent 3f26905 commit 5688c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/componentarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ make_idx(data, x::ComponentVector, last_val) = (
135135
getaxes(x)[1]
136136
)
137137
)
138-
function make_idx(data, x::AbstractArray{N}, last_val) where N<:Number
138+
function make_idx(data, x::AbstractArray{N}, last_val) where N<:Union{Number, Missing}
139139
push!(data, x...)
140140
out = last_index(last_val) .+ (1:length(x))
141141
return (data, ViewAxis(out, ShapedAxis(size(x))))

0 commit comments

Comments
 (0)