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
9ae485d8
Commit
9ae485d8
authored
Jun 20, 2025
by
xiaoye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
e42c23fd
Pipeline
#37874
passed with stages
in 1 minute and 53 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/pages/tabulator.vue
src/pages/tabulator.vue
+3
-2
src/script/post.ts
src/script/post.ts
+3
-4
No files found.
src/pages/tabulator.vue
View file @
9ae485d8
...
@@ -425,6 +425,7 @@
...
@@ -425,6 +425,7 @@
page
.
tournament
=
false
;
page
.
tournament
=
false
;
page
.
menu
=
true
;
page
.
menu
=
true
;
search
.
mine
();
search
.
mine
();
search
.
info
.
creator
=
search
.
creator
==
''
?
0
:
parseInt
(
search
.
creator
);
await
search
.
on
();
await
search
.
on
();
emitter
.
emit
(
Const
.
show
,
false
);
emitter
.
emit
(
Const
.
show
,
false
);
}
}
...
@@ -478,11 +479,11 @@
...
@@ -478,11 +479,11 @@
});
});
watch
(()
=>
{
return
search
.
id
;
},
()
=>
{
watch
(()
=>
{
return
search
.
id
;
},
()
=>
{
search
.
info
.
id
=
!
search
.
id
?
0
:
parseInt
(
search
.
id
);
search
.
info
.
id
=
search
.
id
==
''
?
0
:
parseInt
(
search
.
id
);
});
});
watch
(()
=>
{
return
search
.
creator
;
},
()
=>
{
watch
(()
=>
{
return
search
.
creator
;
},
()
=>
{
search
.
info
.
creator
=
!
search
.
creator
?
0
:
parseInt
(
search
.
creator
);
search
.
info
.
creator
=
search
.
creator
==
''
?
0
:
parseInt
(
search
.
creator
);
});
});
</
script
>
</
script
>
...
...
src/script/post.ts
View file @
9ae485d8
...
@@ -123,9 +123,9 @@ class TabulatorAPI {
...
@@ -123,9 +123,9 @@ class TabulatorAPI {
}
}
},
},
FindALL
:
async
(
token
:
string
,
obj
:
TournamentFindObject
=
{})
:
Promise
<
AllTournament
>
=>
{
FindALL
:
async
(
token
:
string
,
obj
:
TournamentFindObject
=
{})
:
Promise
<
AllTournament
>
=>
{
const
filter
=
(
obj
:
any
)
:
any
=>
{
const
filter
=
(
i
:
any
)
:
any
=>
{
const
v
=
obj
??
''
;
const
v
=
i
??
''
;
return
v
!=
''
&&
v
!=
'
'
?
obj
:
undefined
;
return
(
v
!=
''
&&
v
!=
'
'
)
?
i
:
undefined
;
}
}
let
response
:
{
let
response
:
{
data
:
{
data
:
{
...
@@ -647,7 +647,6 @@ class TabulatorAPI {
...
@@ -647,7 +647,6 @@ class TabulatorAPI {
}
}
};
};
try
{
try
{
console
.
log
(
Data
.
expireAt
?.
toISOString
())
response
=
await
this
.
url
.
patch
(
`/api/api-key/
${
id
}
`
,
{
response
=
await
this
.
url
.
patch
(
`/api/api-key/
${
id
}
`
,
{
name
:
Data
.
name
,
name
:
Data
.
name
,
description
:
Data
.
description
?.
length
??
0
>
0
?
Data
.
description
:
''
,
description
:
Data
.
description
?.
length
??
0
>
0
?
Data
.
description
:
''
,
...
...
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