Skip to content

Commit c72fdda

Browse files
committed
fix: add type to ALL_NAMESPACE_OPTION
1 parent 21a7b07 commit c72fdda

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
export const ALL_NAMESPACE_OPTION = { value: 'all', label: 'All namespaces' }
1+
import { SelectPickerOptionType } from '@Shared/Components'
2+
3+
export const ALL_NAMESPACE_OPTION: Readonly<Pick<SelectPickerOptionType, 'value' | 'label'>> = {
4+
value: 'all',
5+
label: 'All namespaces',
6+
}

0 commit comments

Comments
 (0)