Browse Source

fix: invalid server tool url caused crash (#2311)

tags/0.5.3
Joel 1 year ago
parent
commit
b5ed81b349
No account linked to committer's email address
1 changed files with 14 additions and 1 deletions
  1. 14
    1
      web/app/components/tools/edit-custom-collection-modal/index.tsx

+ 14
- 1
web/app/components/tools/edit-custom-collection-modal/index.tsx View File

}) })
} }


const getPath = (url: string) => {
if (!url)
return ''

try {
const path = new URL(url).pathname
return path || ''
}
catch (e) {
return url
}
}

return ( return (
<> <>
<Drawer <Drawer
<td className="p-2 pl-3">{item.operation_id}</td> <td className="p-2 pl-3">{item.operation_id}</td>
<td className="p-2 pl-3 text-gray-500 w-[236px]">{item.summary}</td> <td className="p-2 pl-3 text-gray-500 w-[236px]">{item.summary}</td>
<td className="p-2 pl-3">{item.method}</td> <td className="p-2 pl-3">{item.method}</td>
<td className="p-2 pl-3">{item.server_url ? new URL(item.server_url).pathname : ''}</td>
<td className="p-2 pl-3">{getPath(item.server_url)}</td>
<td className="p-2 pl-3 w-[62px]"> <td className="p-2 pl-3 w-[62px]">
<Button <Button
className='!h-6 !px-2 text-xs font-medium text-gray-700 whitespace-nowrap' className='!h-6 !px-2 text-xs font-medium text-gray-700 whitespace-nowrap'

Loading…
Cancel
Save