1 Commits
1.0.2 ... 1.0.3

Author SHA1 Message Date
vikingowl
0e29652651 1.0.3 (#52)
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good
Co-authored-by: vikingowl <cw.nachtigall@gmail.com>
Reviewed-on: https://git.harting.dev/CSGOWTF/csgowtf/pulls/52
Co-authored-by: vikingowl <vikingowl@git.harting.dev>
Co-committed-by: vikingowl <vikingowl@git.harting.dev>
2022-01-31 22:58:23 +01:00
3 changed files with 16 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "csgowtf",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

View File

@@ -5,39 +5,39 @@
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width,initial-scale=1.0" name="viewport">
<meta content="Open source CSGO data platform"
<meta content="Track your CSGO matches and see your match details."
name="description">
<meta content="index, follow, archive"
name="robots">
<meta content="Open source CSGO data platform"
<meta content="Track your CSGO matches and see your match details."
property="st:section">
<meta content="csgoWTF"
<meta content="csgoWTF - Open source CSGO data platform"
name="twitter:title">
<meta content="Open source CSGO data platform"
<meta content="Track your CSGO matches and see your match details."
name="twitter:description">
<meta content="summary_large_image"
name="twitter:card">
<meta content="https://csgow.tf/"
property="og:url">
<meta content="csgoWTF"
<meta content="csgoWTF - Open source CSGO data platform"
property="og:title">
<meta content="Open source CSGO data platform"
<meta content="Track your CSGO matches and see your match details."
property="og:description">
<meta content="website"
property="og:type">
<meta content="en_US"
property="og:locale">
<meta content="csgoWTF"
<meta content="csgoWTF - Open source CSGO data platform"
property="og:site_name">
<meta content="https://csgow.tf/logo.svg"
<meta content="https://csgow.tf/android-chrome-512x512.png"
name="twitter:image">
<meta content="https://csgow.tf/logo.svg"
<meta content="https://csgow.tf/android-chrome-512x512.png"
property="og:image">
<meta content="1024"
<meta content="512"
property="og:image:width">
<meta content="1024"
<meta content="512"
property="og:image:height">
<meta content="https://csgow.tf/logo.svg"
<meta content="https://csgow.tf/android-chrome-512x512.png"
property="og:image:secure_url">
<link href="<%= BASE_URL %>apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">

View File

@@ -92,7 +92,8 @@
<!-- ShareCode input -->
<div class="form-outline mb-2">
<input id="track-sharecode" v-model="data.userData.sharecode" class="form-control bg-secondary"
placeholder="ShareCode (optional)"
:placeholder="store.state.playerDetails.matches ? 'ShareCode (optional)' : 'ShareCode (required)'"
:required="!store.state.playerDetails.matches"
type="text"/>
</div>
@@ -123,7 +124,7 @@
<div class="matches">
<MatchesTable v-if="store.state.playerDetails.matches" :matches="store.state.playerDetails.matches" color-front />
<h5 v-else>No matches on record</h5>
<h5 v-else>Track yourself to see your matches</h5>
</div>