Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
OpenSource
/
dify
Segui
4
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
152
Wiki
Attività
Sfoglia il codice sorgente
feat: show path variable friendly in tool edit (
#7344
)
tags/0.7.1
wellCh4n
1 anno fa
parent
a2fafee53a
commit
9e6b755f62
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
1
web/app/components/tools/edit-custom-collection-modal/index.tsx
+ 1
- 1
web/app/components/tools/edit-custom-collection-modal/index.tsx
Vedi File
@@ -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) {
Write
Preview
Loading…
Annulla
Salva