From 9b76f5efd9ec9cbe596024bd042f40aa157feb51 Mon Sep 17 00:00:00 2001 From: kartik-gupta-ij Date: Mon, 30 Oct 2023 22:03:14 +0530 Subject: [PATCH] chore: Text chnages Logs --> Explore and Query --> SQL in navArea --- src/components/Navbar/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 4691be08..0094a901 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -35,8 +35,8 @@ import { NAVBAR_WIDTH } from '@/constants/theme'; const baseURL = import.meta.env.VITE_PARSEABLE_URL ?? '/'; const links = [ - { icon: IconZoomCode, label: 'Query', pathname: '/query', requiredAccess: ['Query', 'GetSchema'] }, - { icon: IconTableShortcut, label: 'Logs', pathname: '/logs', requiredAccess: ['Query', 'GetSchema'] }, + { icon: IconZoomCode, label: 'SQL', pathname: '/query', requiredAccess: ['Query', 'GetSchema'] }, + { icon: IconTableShortcut, label: 'Explore', pathname: '/logs', requiredAccess: ['Query', 'GetSchema'] }, { icon: IconReportAnalytics, label: 'Stats', pathname: '/stats', requiredAccess: ['GetStats'] }, { icon: IconSettings, label: 'Config', pathname: '/config', requiredAccess: ['PutAlert'] }, ];