mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: regression related types; update: model type.
This commit is contained in:
@@ -60,8 +60,9 @@ export type TableRootProp = {
|
||||
selectedAll: boolean;
|
||||
selectedNone: boolean;
|
||||
selectedSome: boolean;
|
||||
columns: Array<PinkColumn> | number;
|
||||
columnsMap: Record<PinkColumn['id'], PinkColumn>;
|
||||
// columns: Array<Column> | number;
|
||||
columns: Record<PinkColumn['id'], PinkColumn>;
|
||||
// columnsMap: Record<PinkColumn['id'], PinkColumn>;
|
||||
toggle: (id: string) => void;
|
||||
toggleAll: () => void;
|
||||
addAvailableId: (id: string) => void;
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
selectedDomain
|
||||
}: {
|
||||
show: boolean;
|
||||
selectedDomain: Models.ProxyRule;
|
||||
selectedDomain: Models.Domain;
|
||||
} = $props();
|
||||
|
||||
const nameservers = $consoleVariables?._APP_DOMAINS_NAMESERVERS.split(',') ?? [
|
||||
|
||||
Reference in New Issue
Block a user