Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHi committed Nov 7, 2023
1 parent f6e266d commit 8e68d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
<title>Roadside Gallery</title>
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import RoadsideObject from '../components/RoadsideObject.vue';
import type { RoadsideObjectModel } from '../model/RoadsideObjectModel'
import { ref } from 'vue';
const randomObjectUrl = 'http://0.0.0.0:9007/random-object'; // Replace with your API endpoint URL
const randomObjectUrl = 'https://0.0.0.0:9007/random-object'; // Replace with your API endpoint URL
const roadsideObject = ref<RoadsideObjectModel | undefined>(undefined)
fetchRoadsideObject().then((r) => roadsideObject.value = r)
Expand Down

0 comments on commit 8e68d26

Please sign in to comment.