From 1bc05eccc03c98582628b50be1d2ad5aa701994a Mon Sep 17 00:00:00 2001 From: Peter Date: Sat, 9 Nov 2024 11:43:57 -0600 Subject: [PATCH] Fix IDE warnings --- src/components/PlayerCareerBattingTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/PlayerCareerBattingTable.vue b/src/components/PlayerCareerBattingTable.vue index 882a677..026452f 100644 --- a/src/components/PlayerCareerBattingTable.vue +++ b/src/components/PlayerCareerBattingTable.vue @@ -36,7 +36,7 @@ - + S{{ stat.seasonNumber }}{{ stat.isRegularSeason ? '' : ' / Playoffs' }} {{ stat.pa }} {{ stat.ab }} @@ -67,7 +67,7 @@ - + Career{{ idx > 0 ? ' / Playoffs' : '' }} {{ stat.pa }} {{ stat.ab }} @@ -112,7 +112,7 @@ interface BattingStatWithSeason extends BattingStat { } export default { - name: "PlayerCareerBattingTable", + name: 'PlayerCareerBattingTable', props: { regularSeasonBattingStats: { type: Array, required: true }, postSeasonBattingStats: { type: Array, required: true },