Skip to content

Commit cd78da5

Browse files
committed
fix: 🐛 add deprecated to strict filter
1 parent f161eea commit cd78da5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/glide.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export function column<TColumnParams>(manifest: ColumnDefinition<TColumnParams>)
126126
export function toStrictManifest(convenient: ManifestConvenient<any>): Manifest {
127127
// We carefully pick out just the props in manifest, because more
128128
// could come in from the component.
129-
const { name, category, released, description, author, result, params, about, video } = convenient;
129+
const { name, category, released, description, author, result, params, about, video, deprecated } = convenient;
130130
const icon = getIconForManifest(convenient);
131131

132132
return {
@@ -139,6 +139,7 @@ export function toStrictManifest(convenient: ManifestConvenient<any>): Manifest
139139
about,
140140
icon,
141141
video,
142+
deprecated,
142143
params: Object.entries(params).map(([name, param]) => ({
143144
name,
144145
...param,

0 commit comments

Comments
 (0)