fix Michel typo, update app's

latest small changes
This commit is contained in:
Xevion
2020-08-10 04:52:58 -05:00
parent 7e98c55d9c
commit 6179c210c2
6 changed files with 164 additions and 167 deletions

View File

@@ -39,6 +39,7 @@
.accordion {
.list-group-item {
padding: 10px 20px;
a { display: block; }
.badge { float: right; min-width: 36px; }
@@ -95,7 +96,7 @@ export default {
},
methods: {
getSeasons() {
const path = 'http://localhost:5000/api/episodes/';
const path = `http://${process.env.VUE_APP_HOST}:${process.env.VUE_APP_FLASK_PORT}/api/episodes/`;
axios.get(path)
.then((res) => {
this.seasons = res.data;