diff --git a/src/components/Main.vue b/src/components/Main.vue index e9ec77d..9bc8c88 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -125,7 +125,9 @@ export default { loadStations() { // FIXME https://de1.api.radio-browser.info/json/stations/lastchange?limit=10 const vm = this - vm.loading = true + if (vm.offset === 0) { + vm.loading = true + } this.$jquery.getJSON('https://de1.api.radio-browser.info/json/stations', { limit: 20, diff --git a/src/components/Player.vue b/src/components/Player.vue index 552ed55..fc89ff2 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -2,7 +2,12 @@