Skip to content

Commit

Permalink
fix: More work skibidibi (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
Norbiros authored Oct 6, 2024
1 parent eb6b67b commit aadfd25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion backend/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

from backend.routers.index_router import index_router
from backend.routers.landsat_api_router import landsat_api_router
from backend.routers.watch_my_pixel import watch_my_pixel_router
from backend.routers.report_router import report_router
from backend.routers.watch_my_pixel import watch_my_pixel_router


def create_app():
Expand Down
14 changes: 7 additions & 7 deletions frontend/components/navbar/NavbarLinks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
<NavbarLink url="/how_does_it_work" :variant="linksVariant">
How does it work?
</NavbarLink>
<NavbarLink url="/panel/select_scene" :variant="linksVariant">
Select tile
<NavbarLink v-if="user" url="/panel/select_scene" :variant="linksVariant">
Select scene
</NavbarLink>
<NavbarLink url="/panel/watch_my_pixel" :variant="linksVariant">
<NavbarLink url="/panel/reports" :variant="linksVariant">
Reports
</NavbarLink>
<NavbarLink v-if="user" url="/panel/watch_my_pixel" :variant="linksVariant">
Watch My Pixel
</NavbarLink>
<NavbarLink url="/panel/my_pixel_watches" :variant="linksVariant">
<NavbarLink v-if="user" url="/panel/my_pixel_watches" :variant="linksVariant">
My Pixel Watches
</NavbarLink>
<NavbarLink url="/panel/reports" :variant="linksVariant">
Reports
</NavbarLink>
<NuxtLink v-if="user" to="/panel">
<UserNav :avatar-url="user?.user_metadata.avatar_url" />
</NuxtLink>
Expand Down
2 changes: 1 addition & 1 deletion frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default defineNuxtConfig({
openFetch: {
clients: {
api: {
baseURL: "http://localhost:8000/"
baseURL: process.env.NUXT_OPEN_FETCH_API_BASE_URL || "http://localhost:8000/"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/how_does_it_work.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
</div>
</div>
</div>
<Footer/>
<Footer />
</div>
</template>

0 comments on commit aadfd25

Please sign in to comment.