Skip to content

Commit

Permalink
Set defaults for Grafana maps and links
Browse files Browse the repository at this point in the history
  • Loading branch information
GeniJaho committed Aug 11, 2024
1 parent c7460c4 commit 39e86c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/js/Components/Welcome.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup>
import {Link} from "@inertiajs/vue3";
const grafanaLink = import.meta.env.VITE_GRAFANA_MAP_LINK;
const grafanaLink = import.meta.env.VITE_GRAFANA_MAP_LINK || 'https://globalmap.litterapp.net/';
</script>

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Layouts/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defineProps({
const showingNavigationDropdown = ref(false);
const grafanaLink = import.meta.env.VITE_GRAFANA_NAV_LINK;
const grafanaLink = import.meta.env.VITE_GRAFANA_NAV_LINK || 'https://globalmap.litterapp.net/';
const switchToTeam = (team) => {
router.put(route('current-team.update'), {
Expand Down

0 comments on commit 39e86c2

Please sign in to comment.