mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 20:17:29 +08:00
Fix/enterprise model credential (#25703)
This commit is contained in:
commit
07ca4071d4
@ -2,6 +2,7 @@
|
|||||||
import { useGlobalPublicStore } from '@/context/global-public-context'
|
import { useGlobalPublicStore } from '@/context/global-public-context'
|
||||||
import { useFavicon, useTitle } from 'ahooks'
|
import { useFavicon, useTitle } from 'ahooks'
|
||||||
import { basePath } from '@/utils/var'
|
import { basePath } from '@/utils/var'
|
||||||
|
import { useEffect } from 'react'
|
||||||
|
|
||||||
export default function useDocumentTitle(title: string) {
|
export default function useDocumentTitle(title: string) {
|
||||||
const isPending = useGlobalPublicStore(s => s.isGlobalPending)
|
const isPending = useGlobalPublicStore(s => s.isGlobalPending)
|
||||||
@ -20,5 +21,24 @@ export default function useDocumentTitle(title: string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
useTitle(titleStr)
|
useTitle(titleStr)
|
||||||
|
useEffect(() => {
|
||||||
|
let apple: HTMLLinkElement | null = null
|
||||||
|
if (systemFeatures.branding.favicon) {
|
||||||
|
document
|
||||||
|
.querySelectorAll(
|
||||||
|
'link[rel=\'icon\'], link[rel=\'shortcut icon\'], link[rel=\'apple-touch-icon\'], link[rel=\'mask-icon\']',
|
||||||
|
)
|
||||||
|
.forEach(n => n.parentNode?.removeChild(n))
|
||||||
|
|
||||||
|
apple = document.createElement('link')
|
||||||
|
apple.rel = 'apple-touch-icon'
|
||||||
|
apple.href = systemFeatures.branding.favicon
|
||||||
|
document.head.appendChild(apple)
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
apple?.remove()
|
||||||
|
}
|
||||||
|
}, [systemFeatures.branding.favicon])
|
||||||
useFavicon(favicon)
|
useFavicon(favicon)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user