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>
This commit was merged in pull request #52.
This commit is contained in:
vikingowl
2022-01-31 22:58:23 +01:00
parent 4464d92e81
commit 0e29652651
3 changed files with 16 additions and 15 deletions

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>