File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
routes/(console)/organization-[organization]/domains Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,9 @@ export type TableRootProp = {
60
60
selectedAll : boolean ;
61
61
selectedNone : boolean ;
62
62
selectedSome : boolean ;
63
- columns : Array < PinkColumn > | number ;
64
- columnsMap : Record < PinkColumn [ 'id' ] , PinkColumn > ;
63
+ // columns: Array<Column> | number;
64
+ columns : Record < PinkColumn [ 'id' ] , PinkColumn > ;
65
+ // columnsMap: Record<PinkColumn['id'], PinkColumn>;
65
66
toggle : ( id : string ) => void ;
66
67
toggleAll : ( ) => void ;
67
68
addAvailableId : ( id : string ) => void ;
Original file line number Diff line number Diff line change 16
16
selectedDomain
17
17
}: {
18
18
show: boolean ;
19
- selectedDomain: Models .ProxyRule ;
19
+ selectedDomain: Models .Domain ;
20
20
} = $props ();
21
21
22
22
const nameservers = $consoleVariables ?._APP_DOMAINS_NAMESERVERS .split (' ,' ) ?? [
You can’t perform that action at this time.
0 commit comments