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

View File

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