Skip to content

Commit

Permalink
Fix Legacy UI Button Navigation Issue (#46586)
Browse files Browse the repository at this point in the history
* #46316 Issue: Update start.rst

* Update start.rst

Added the link for detailed error

* Removed single ticks

* Fix Legacy UI Button Navigation Issue

* Fix the URL for legacy ui
  • Loading branch information
SaumilPatel03 authored Feb 8, 2025
1 parent 1ee1642 commit 1644e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/ui/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@


# This is an example. You should make your own `.env.local` file for development
VITE_LEGACY_API_URL="http://localhost:28080"
VITE_LEGACY_API_URL="http://localhost:28080/home"
2 changes: 1 addition & 1 deletion airflow/ui/src/layouts/Nav/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const Nav = () => {
<NavButton
icon={<FiCornerUpLeft size="1.75rem" />}
title="Legacy UI"
to={import.meta.env.VITE_LEGACY_API_URL}
to={import.meta.env.VITE_LEGACY_API_URL || "http://localhost:28080/home"}
/>
<DocsButton />
<UserSettingsButton />
Expand Down

0 comments on commit 1644e03

Please sign in to comment.