Skip to content
Snippets Groups Projects
Commit 3bc15df1 authored by Leonardo Christino's avatar Leonardo Christino
Browse files

Merge branch 'DEV-13' into 'main'

feat(version): add version number to user settings dropdown

See merge request !41
parents f7cedc8f fe205202
No related branches found
No related tags found
1 merge request!41feat(version): add version number to user settings dropdown
Pipeline #126931 passed
VITE_BACKEND_URL=https://api.graphpolaris.com VITE_BACKEND_URL=https://api.graphpolaris.com
VITE_STAGING=local VITE_STAGING=local
VITE_GRAPHPOLARIS_VERSION=dev-build
\ No newline at end of file
...@@ -5,4 +5,4 @@ VITE_SKIP_LOGIN=true ...@@ -5,4 +5,4 @@ VITE_SKIP_LOGIN=true
VITE_BACKEND_USER=:3000 VITE_BACKEND_USER=:3000
VITE_BACKEND_QUERY=:3003 VITE_BACKEND_QUERY=:3003
VITE_BACKEND_SCHEMA=:3002 VITE_BACKEND_SCHEMA=:3002
VITE_GRAPHPOLARIS_VERSION=dev-build
...@@ -6,4 +6,5 @@ VITE_SKIP_LOGIN=false ...@@ -6,4 +6,5 @@ VITE_SKIP_LOGIN=false
VITE_BACKEND_USER=/user VITE_BACKEND_USER=/user
VITE_BACKEND_QUERY=/query VITE_BACKEND_QUERY=/query
VITE_BACKEND_SCHEMA=/schema VITE_BACKEND_SCHEMA=/schema
GRAPHPOLARIS_VERSION=prod-build
...@@ -161,6 +161,10 @@ export const Navbar = (props: NavbarComponentProps) => { ...@@ -161,6 +161,10 @@ export const Navbar = (props: NavbarComponentProps) => {
/> />
)} )}
</li> </li>
<div className="menu-title">
<div className="absolute left-0 h-0.5 w-full bg-offwhite-300"></div>
<h3 className="text-xs mt-3">Version: {import.meta.env.VITE_GRAPHPOLARIS_VERSION}</h3>
</div>
</> </>
) : ( ) : (
<> <>
...@@ -179,6 +183,10 @@ export const Navbar = (props: NavbarComponentProps) => { ...@@ -179,6 +183,10 @@ export const Navbar = (props: NavbarComponentProps) => {
{/* !TODO */} {/* !TODO */}
</button> </button>
</div> </div>
<div className="menu-title">
<div className="absolute left-0 h-0.5 w-full bg-offwhite-300"></div>
<h3 className="text-xs mt-3">Version: {import.meta.env.VITE_GRAPHPOLARIS_VERSION}</h3>
</div>
</> </>
)} )}
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment