Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tabulator-another-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
tabulator-another-web
Commits
c97bad9d
Commit
c97bad9d
authored
Jun 27, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix plus sign split
parent
4d71b94e
Pipeline
#38169
passed with stages
in 2 minutes and 31 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/script/match.ts
src/script/match.ts
+2
-2
src/script/participant.ts
src/script/participant.ts
+1
-1
No files found.
src/script/match.ts
View file @
c97bad9d
...
@@ -25,14 +25,14 @@ class Match {
...
@@ -25,14 +25,14 @@ class Match {
this
.
round
=
obj
.
round
;
this
.
round
=
obj
.
round
;
this
.
isThirdPlaceMatch
=
obj
.
isThirdPlaceMatch
;
this
.
isThirdPlaceMatch
=
obj
.
isThirdPlaceMatch
;
this
.
status
=
obj
.
status
;
this
.
status
=
obj
.
status
;
const
name1
=
obj
.
player1
?.
name
.
split
(
'
+
'
)
??
[];
const
name1
=
obj
.
player1
?.
name
.
split
(
/
[\+\u
FF0B
]
/
)
??
[];
this
.
player1
=
{
this
.
player1
=
{
id
:
obj
.
player1Id
,
id
:
obj
.
player1Id
,
name
:
(
name1
.
length
==
2
&&
!
Number
.
isNaN
(
name1
[
0
])
&&
name1
[
0
].
length
>
3
)
?
name1
[
1
]
:
obj
.
player1
?.
name
??
''
,
name
:
(
name1
.
length
==
2
&&
!
Number
.
isNaN
(
name1
[
0
])
&&
name1
[
0
].
length
>
3
)
?
name1
[
1
]
:
obj
.
player1
?.
name
??
''
,
fullName
:
obj
.
player1
?.
name
??
''
,
fullName
:
obj
.
player1
?.
name
??
''
,
score
:
obj
.
player1Score
score
:
obj
.
player1Score
};
};
const
name2
=
obj
.
player2
?.
name
.
split
(
'
+
'
)
??
[];
const
name2
=
obj
.
player2
?.
name
.
split
(
/
[\+\u
FF0B
]
/
)
??
[];
this
.
player2
=
{
this
.
player2
=
{
id
:
obj
.
player2Id
,
id
:
obj
.
player2Id
,
name
:
(
name2
.
length
==
2
&&
!
Number
.
isNaN
(
name2
[
0
])
&&
name2
[
0
].
length
>
3
)
?
name2
[
1
]
:
obj
.
player2
?.
name
??
''
,
name
:
(
name2
.
length
==
2
&&
!
Number
.
isNaN
(
name2
[
0
])
&&
name2
[
0
].
length
>
3
)
?
name2
[
1
]
:
obj
.
player2
?.
name
??
''
,
...
...
src/script/participant.ts
View file @
c97bad9d
...
@@ -14,7 +14,7 @@ class Participant {
...
@@ -14,7 +14,7 @@ class Participant {
constructor
(
obj
:
ParticipantObject
)
{
constructor
(
obj
:
ParticipantObject
)
{
this
.
fullName
=
obj
.
name
;
this
.
fullName
=
obj
.
name
;
const
name
=
obj
.
name
.
split
(
'
+
'
);
const
name
=
obj
.
name
.
split
(
/
[\+\u
FF0B
]
/
);
this
.
name
=
(
name
.
length
==
2
&&
!
Number
.
isNaN
(
name
[
0
])
&&
name
[
0
].
length
>
3
)
?
name
[
1
]
:
obj
.
name
;
this
.
name
=
(
name
.
length
==
2
&&
!
Number
.
isNaN
(
name
[
0
])
&&
name
[
0
].
length
>
3
)
?
name
[
1
]
:
obj
.
name
;
this
.
tournamentId
=
obj
.
tournamentId
;
this
.
tournamentId
=
obj
.
tournamentId
;
this
.
id
=
obj
.
id
;
this
.
id
=
obj
.
id
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment