Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSCar committed Sep 8, 2023
1 parent c573133 commit 32ba31e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stores/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const useMainStore = defineStore("main", () => {
const playStatTypes: Ref<PlayStatType[]> = ref([]);

const yearRanges = ref([2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]);
const defaultYear = ref(2022);
const defaultYear = ref(2023);

const fbsConferences = ref([
{
Expand Down
4 changes: 2 additions & 2 deletions src/views/TeamMetricsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
<div class="formgrid grid mt-3 justify-content-center">
<div class="field col-12 sm:col-6 lg:col-3">
<label>Start Week</label>
<InputNumber v-model="startWeek" :use-grouping="false" :min="1" :max="16" class="w-full"
<InputNumber v-model="startWeek" :use-grouping="false" :min="1" :max="20" class="w-full"
@change="refreshData"></InputNumber>
</div>
<div class="field col-12 sm:col-6 lg:col-3">
<label>End Week</label>
<InputNumber v-model="endWeek" :use-grouping="false" :min="1" :max="16" class="w-full"
<InputNumber v-model="endWeek" :use-grouping="false" :min="1" :max="20" class="w-full"
@change="refreshData"></InputNumber>
</div>
</div>
Expand Down

0 comments on commit 32ba31e

Please sign in to comment.