mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 00:19:00 +08:00
Fix multiple keys selected bug
This commit is contained in:
parent
cb5713216a
commit
4ec389c449
@ -138,7 +138,7 @@ const App = () => {
|
||||
Settings
|
||||
</NavLink>
|
||||
</Menu.Item>
|
||||
<Menu.Item key="5" icon={<ApiOutlined />}>
|
||||
<Menu.Item key="6" icon={<ApiOutlined />}>
|
||||
<NavLink to="/add-instrumentation" style={{ fontSize: 12, textDecoration: "none" }}>
|
||||
Add instrumentation
|
||||
</NavLink>
|
||||
|
@ -15,7 +15,7 @@ const AppWrapper = () => {
|
||||
<Route path="/traces/:id" component={App} />
|
||||
<Route path="/usage-explorer" component={App} />
|
||||
<Route path="/settings" component={App} />
|
||||
<Route path="/instumentation" component={App} />
|
||||
<Route path="/add-instrumentation" component={App} />
|
||||
<Route path="/signup" component={Signup} />
|
||||
<Route
|
||||
path="/"
|
||||
|
@ -12,14 +12,10 @@ import { useAuthenticationData } from "../../hooks/authentication";
|
||||
import { TOKEN_DATE } from "../../../../../sass/frontend/src/constants/accessToken";
|
||||
import { Alert } from "antd";
|
||||
|
||||
interface SettingsPageProps {}
|
||||
interface InstrumentationPageProps {}
|
||||
|
||||
const layout = {
|
||||
labelCol: { span: 3 },
|
||||
wrapperCol: { span: 6 },
|
||||
};
|
||||
|
||||
const InstrumentationPage = (props: SettingsPageProps) => {
|
||||
const InstrumentationPage = (props: InstrumentationPageProps) => {
|
||||
|
||||
|
||||
return (
|
||||
|
Loading…
x
Reference in New Issue
Block a user