Skip to content

Commit 9962248

Browse files
committed
fix: matching
1 parent f0f5ceb commit 9962248

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "penguin-stats-frontend",
3-
"version": "3.13.21",
3+
"version": "3.13.22",
44
"private": true,
55
"author": "Penguin Statistics Contributors <contributors@penguin-stats.io> (https://github.com/orgs/penguin-statistics/people)",
66
"scripts": {

src/components/stats/StageSelectorCategory.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default {
104104
computed: {
105105
tabs () {
106106
const findMainlineIndex = (zoneId) => {
107-
const match = /^main_(\d+)$/.exec(zoneId)
107+
const match = /^main_(\d+)/.exec(zoneId)
108108
return match?.[1]
109109
}
110110
const mainlineZoneRanges = Object.entries(this.category.zones.reduce((prev, curr) => {

0 commit comments

Comments
 (0)