This commit is contained in:
2021-11-02 20:09:33 +01:00
committed by Giovanni Harting
parent 681add6d41
commit 42d0e79df8
2 changed files with 8 additions and 1 deletions

View File

@@ -25,6 +25,7 @@
</label>
<input id="search" v-model="data.searchInput" aria-label="Search"
autocomplete="off"
class="form-control bg-transparent border-0"
placeholder="SteamID64, Profile Link or Custom URL"
title="SteamID64, Profile Link or Custom URL"
@@ -50,7 +51,7 @@
<script>
import {reactive} from "vue";
import {useStore} from 'vuex'
import {GetUser, GoToPlayer, closeNav} from '../utils'
import {closeNav, GetUser, GoToPlayer} from '../utils'
export default {
name: 'Nav',
@@ -171,6 +172,11 @@ export default {
</script>
<style lang="scss" scoped>
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
color: var(--bs-warning);
}
nav {
.nav-link {
text-decoration: none;

View File

@@ -445,6 +445,7 @@ export default {
refreshButton.classList.remove('animate')
}, 2000)
})
data.playerMeta = await getPlayerMeta(props.id, displayCounter)
}
const TrackPlayer = async () => {