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