diff --git a/src/components/PlayerSideInfo.vue b/src/components/PlayerSideInfo.vue index 7f3429f..33fb3e4 100644 --- a/src/components/PlayerSideInfo.vue +++ b/src/components/PlayerSideInfo.vue @@ -52,6 +52,16 @@ +
+
+
Best Mate (by winrate)
+
+
+ +
+
Best Mate (by winrate)
@@ -116,6 +126,16 @@
+
+
+
Best Map (by winrate)
+
+
+ +
+
Best Map (by winrate)
@@ -235,6 +255,10 @@ export default { border-radius: 5px; } + ol, ul, dl { + margin-bottom: 0; + } + .best-mate, .preferred-weapons, .most-played-with, @@ -262,7 +286,7 @@ export default { line-height: 25px; font-size: .9rem; padding: 0 10px; - margin: 5px 0; + margin: 10px 0; cursor: pointer; display: flex; diff --git a/src/utils/ApiRequests.js b/src/utils/ApiRequests.js index 683d61f..5966aaf 100644 --- a/src/utils/ApiRequests.js +++ b/src/utils/ApiRequests.js @@ -10,7 +10,7 @@ export const GetMatches = async () => { return res.data } catch (err) { // TODO: Error handling - console.log(err.response.status, err.response.statusText) + // console.log(err.response.status, err.response.statusText) } } @@ -109,6 +109,7 @@ export const GetPlayerMeta = async (player_id, limit = 4) => { const res = await axios.get(`${API_URL}/player/${player_id}/meta/${limit}`) if (res.status === 200) { + // console.log(res.data) return res.data } } catch (err) {