Browse Source

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

tags/0.7.1
wellCh4n 1 year ago
parent
commit
9e6b755f62
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  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 View File

return '' return ''


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

Loading…
Cancel
Save