Skip to content

Commit 597aa73

Browse files
committed
update debugger picker option model to handle multiple selections
1 parent 631f21a commit 597aa73

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
import { LibraryFilterLabel } from "@/features/libraries/models/library-filters.model";
2+
13
export interface DebuggerPickerOptionModel {
2-
value: any;
3-
label: string;
4-
isDisabled?: boolean;
4+
label: LibraryFilterLabel;
5+
options: {
6+
value: any;
7+
label: string;
8+
isDisabled?: boolean
9+
}[];
510
}

0 commit comments

Comments
 (0)