feat: display deprecated backend versions group

This commit is contained in:
jialin
2025-11-25 16:04:27 +08:00
parent 33defab7df
commit 47cae0134c
9 changed files with 244 additions and 103 deletions
+6 -1
View File
@@ -307,7 +307,12 @@ export interface BackendOption {
default_backend_param: string[];
default_version: string;
isBuiltIn: boolean;
versions: { label: string; value: string; title?: string }[];
versions: {
label: string;
value: string;
title?: string;
is_deprecated: boolean;
}[];
}
export interface AccessControlFormData {