浏览代码

feat: show path variable friendly in tool edit (#7344)

tags/0.7.1
wellCh4n 1年前
父节点
当前提交
9e6b755f62
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      web/app/components/tools/edit-custom-collection-modal/index.tsx

+ 1
- 1
web/app/components/tools/edit-custom-collection-modal/index.tsx 查看文件

@@ -169,7 +169,7 @@ const EditCustomCollectionModal: FC<Props> = ({
return ''

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

正在加载...
取消
保存