fix: copy button do not work

This commit is contained in:
jialin
2026-02-04 20:14:25 +08:00
parent 332521a7f3
commit 47596fdb1a
5 changed files with 69 additions and 82 deletions
@@ -66,6 +66,11 @@ const options: BackendParameter[] = [
value: '--ssl-certfile',
options: []
},
{
label: '--data-parallel-size-local',
value: '--data-parallel-size-local',
options: []
},
{
label: '--enable-ssl-refresh',
value: '--enable-ssl-refresh',
@@ -194,24 +194,3 @@ export const hotkeyConfigs = [
},
{ keys: HotKeys.NEW4, width: 600, source: modelSourceMap.local_path_value }
];
/**
* hotkeyConfigs.map(({ keys, width, source }) =>
useHotkeys(
keys.join(','),
() => {
setOpenDeployModal({
show: true,
width,
source,
gpuOptions: gpuDeviceList.current
});
},
{
preventDefault: true,
enabled: !openAddModal && !openDeployModal.show && !openLogModal
}
)
);
*
*/