Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-deckform-filler
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
ygopro-deckform-filler
Commits
1f45e0dc
Commit
1f45e0dc
authored
Oct 24, 2025
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
e945c5c3
Pipeline
#41243
passed with stages
in 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/app.service.ts
src/app.service.ts
+4
-3
No files found.
src/app.service.ts
View file @
1f45e0dc
...
...
@@ -86,6 +86,10 @@ export class AppService extends ConsoleLogger {
doc
.
addPage
(
newPage
);
};
const
cards
=
[...
new
Set
([...
ydk
.
main
,
...
ydk
.
extra
,
...
ydk
.
side
])];
const
cardDatas
=
await
this
.
cardDataService
.
getCardDatas
(
cards
);
const
cardDataMap
=
_
.
keyBy
(
cardDatas
,
'
id
'
);
const
filterType
=
(
type
:
number
)
=>
ydk
.
main
.
filter
((
id
)
=>
{
if
(
!
cardDataMap
[
id
])
{
...
...
@@ -124,8 +128,6 @@ export class AppService extends ConsoleLogger {
pageCount
=
pc
;
};
const
cards
=
[...
new
Set
([...
ydk
.
main
,
...
ydk
.
extra
,
...
ydk
.
side
])];
const
cardDatas
=
await
this
.
cardDataService
.
getCardDatas
(
cards
);
const
aliasMap
=
new
Map
<
number
,
number
>
();
cards
.
forEach
((
id
,
i
)
=>
{
if
(
id
!==
cardDatas
[
i
].
id
)
{
...
...
@@ -143,7 +145,6 @@ export class AppService extends ConsoleLogger {
}
});
}
const
cardDataMap
=
_
.
keyBy
(
cardDatas
,
'
id
'
);
const
drawCards
=
async
(
cards
:
number
[],
...
...
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