running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 412e58ecc8c02ddd312b5af3544d6cc77ee9fc63
parent 0443b5efa6779da5b78bc4f9889e1b177b7c3787
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Sat, 16 Oct 2021 16:59:48 -0700

Fix typos in TargetTable component

Diffstat:
Msrc/components/TargetTable.vue | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/TargetTable.vue b/src/components/TargetTable.vue @@ -1,5 +1,5 @@ <template> - <div class="time-table"> + <div class="target-table"> <table class="results" v-show="!inEditMode"> <thead> <tr> @@ -126,7 +126,7 @@ import TimeInput from '@/components/TimeInput.vue'; import blur from '@/directives/blur'; export default { - name: 'TimeTable', + name: 'TargetTable', components: { DecimalInput, @@ -292,7 +292,7 @@ export default { </script> <style scoped> -/* time table */ +/* target table */ .results th:last-child { text-align: right; }