Update SettingsOptionLayout to include Tag component in link name
This commit is contained in:
parent
8e429e2379
commit
0ec5621b89
@ -1,7 +1,15 @@
|
|||||||
import { Book, BrainCircuit, Orbit, Share, BlocksIcon , InfoIcon} from "lucide-react"
|
import {
|
||||||
|
Book,
|
||||||
|
BrainCircuit,
|
||||||
|
Orbit,
|
||||||
|
Share,
|
||||||
|
BlocksIcon,
|
||||||
|
InfoIcon
|
||||||
|
} from "lucide-react"
|
||||||
import { useTranslation } from "react-i18next"
|
import { useTranslation } from "react-i18next"
|
||||||
import { Link, useLocation } from "react-router-dom"
|
import { Link, useLocation } from "react-router-dom"
|
||||||
import { OllamaIcon } from "../Icons/Ollama"
|
import { OllamaIcon } from "../Icons/Ollama"
|
||||||
|
import { Tag } from "antd"
|
||||||
|
|
||||||
function classNames(...classes: string[]) {
|
function classNames(...classes: string[]) {
|
||||||
return classes.filter(Boolean).join(" ")
|
return classes.filter(Boolean).join(" ")
|
||||||
@ -9,7 +17,7 @@ function classNames(...classes: string[]) {
|
|||||||
|
|
||||||
const LinkComponent = (item: {
|
const LinkComponent = (item: {
|
||||||
href: string
|
href: string
|
||||||
name: string
|
name: string | JSX.Element
|
||||||
icon: any
|
icon: any
|
||||||
current: string
|
current: string
|
||||||
}) => {
|
}) => {
|
||||||
@ -40,7 +48,7 @@ const LinkComponent = (item: {
|
|||||||
|
|
||||||
export const SettingsLayout = ({ children }: { children: React.ReactNode }) => {
|
export const SettingsLayout = ({ children }: { children: React.ReactNode }) => {
|
||||||
const location = useLocation()
|
const location = useLocation()
|
||||||
const { t } = useTranslation("settings")
|
const { t } = useTranslation(["settings", "common"])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -70,7 +78,12 @@ export const SettingsLayout = ({ children }: { children: React.ReactNode }) => {
|
|||||||
/>
|
/>
|
||||||
<LinkComponent
|
<LinkComponent
|
||||||
href="/settings/knowledge"
|
href="/settings/knowledge"
|
||||||
name={t("manageKnowledge.title")}
|
name={
|
||||||
|
<div className="inline-flex items-center gap-2">
|
||||||
|
{t("manageKnowledge.title")}
|
||||||
|
<Tag color="yellow">{t("common:beta")}</Tag>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
icon={BlocksIcon}
|
icon={BlocksIcon}
|
||||||
current={location.pathname}
|
current={location.pathname}
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user