Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
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
Neos
Commits
102cf9fc
Commit
102cf9fc
authored
Jul 27, 2024
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix antd warning
parent
17edc027
Pipeline
#28716
passed with stages
in 10 minutes and 45 seconds
Changes
6
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
5 deletions
+6
-5
src/service/room/duelEnd.ts
src/service/room/duelEnd.ts
+1
-0
src/ui/BuildDeck/DeckDatabase/index.tsx
src/ui/BuildDeck/DeckDatabase/index.tsx
+1
-1
src/ui/Duel/Message/AnnounceModal/index.tsx
src/ui/Duel/Message/AnnounceModal/index.tsx
+1
-1
src/ui/Duel/PlayMat/ChatBox/index.tsx
src/ui/Duel/PlayMat/ChatBox/index.tsx
+1
-1
src/ui/Layout/index.tsx
src/ui/Layout/index.tsx
+1
-1
src/ui/WaitRoom/Chat.tsx
src/ui/WaitRoom/Chat.tsx
+1
-1
No files found.
src/service/room/duelEnd.ts
View file @
102cf9fc
...
@@ -5,5 +5,6 @@ export default function handleDuelEnd(
...
@@ -5,5 +5,6 @@ export default function handleDuelEnd(
container
:
Container
,
container
:
Container
,
_pb
:
ygopro
.
YgoStocMsg
,
_pb
:
ygopro
.
YgoStocMsg
,
)
{
)
{
console
.
log
(
"
duel end
"
);
container
.
context
.
matStore
.
duelEnd
=
true
;
container
.
context
.
matStore
.
duelEnd
=
true
;
}
}
src/ui/BuildDeck/DeckDatabase/index.tsx
View file @
102cf9fc
...
@@ -127,7 +127,7 @@ export const DeckDatabase: React.FC = () => {
...
@@ -127,7 +127,7 @@ export const DeckDatabase: React.FC = () => {
<
Space
className=
{
styles
.
title
}
direction=
"horizontal"
>
<
Space
className=
{
styles
.
title
}
direction=
"horizontal"
>
<
Input
<
Input
placeholder=
{
i18n
(
"
KeywordsPlaceholder
"
)
}
placeholder=
{
i18n
(
"
KeywordsPlaceholder
"
)
}
bordered=
{
false
}
variant=
"borderless"
suffix=
{
suffix=
{
<
Button
<
Button
type=
"text"
type=
"text"
...
...
src/ui/Duel/Message/AnnounceModal/index.tsx
View file @
102cf9fc
...
@@ -74,7 +74,7 @@ export const AnnounceModal: React.FC = () => {
...
@@ -74,7 +74,7 @@ export const AnnounceModal: React.FC = () => {
<
Input
<
Input
className=
{
styles
.
input
}
className=
{
styles
.
input
}
placeholder=
"请输入宣言卡名(或关键字)"
placeholder=
"请输入宣言卡名(或关键字)"
bordered=
{
false
}
variant=
"borderless"
value=
{
searchWord
}
value=
{
searchWord
}
onChange=
{
(
e
)
=>
setSearchWord
(
e
.
target
.
value
)
}
onChange=
{
(
e
)
=>
setSearchWord
(
e
.
target
.
value
)
}
suffix=
{
suffix=
{
...
...
src/ui/Duel/PlayMat/ChatBox/index.tsx
View file @
102cf9fc
...
@@ -39,7 +39,7 @@ export const ChatBox: React.FC = () => {
...
@@ -39,7 +39,7 @@ export const ChatBox: React.FC = () => {
</
ScrollableArea
>
</
ScrollableArea
>
<
div
className=
{
styles
.
input
}
>
<
div
className=
{
styles
.
input
}
>
<
Input
.
TextArea
<
Input
.
TextArea
bordered=
{
false
}
variant=
"borderless"
value=
{
input
}
value=
{
input
}
onChange=
{
(
event
)
=>
setInput
(
event
.
target
.
value
)
}
onChange=
{
(
event
)
=>
setInput
(
event
.
target
.
value
)
}
autoSize
autoSize
...
...
src/ui/Layout/index.tsx
View file @
102cf9fc
...
@@ -28,6 +28,7 @@ import {
...
@@ -28,6 +28,7 @@ import {
import
{
useConfig
}
from
"
@/config
"
;
import
{
useConfig
}
from
"
@/config
"
;
import
{
accountStore
}
from
"
@/stores
"
;
import
{
accountStore
}
from
"
@/stores
"
;
import
{
setCssProperties
}
from
"
../Duel/PlayMat/css
"
;
import
{
Setting
}
from
"
../Setting
"
;
import
{
Setting
}
from
"
../Setting
"
;
import
styles
from
"
./index.module.scss
"
;
import
styles
from
"
./index.module.scss
"
;
import
{
import
{
...
@@ -40,7 +41,6 @@ import {
...
@@ -40,7 +41,6 @@ import {
initSuper
,
initSuper
,
initWASM
,
initWASM
,
}
from
"
./utils
"
;
}
from
"
./utils
"
;
import
{
setCssProperties
}
from
"
../Duel/PlayMat/css
"
;
const
NeosConfig
=
useConfig
();
const
NeosConfig
=
useConfig
();
...
...
src/ui/WaitRoom/Chat.tsx
View file @
102cf9fc
...
@@ -23,7 +23,7 @@ export const Chat: React.FC = () => {
...
@@ -23,7 +23,7 @@ export const Chat: React.FC = () => {
</
ScrollableArea
>
</
ScrollableArea
>
<
div
className=
{
styles
.
input
}
>
<
div
className=
{
styles
.
input
}
>
<
Input
.
TextArea
<
Input
.
TextArea
bordered=
{
false
}
variant=
"borderless"
value=
{
input
}
value=
{
input
}
onChange=
{
(
event
)
=>
setInput
(
event
.
target
.
value
)
}
onChange=
{
(
event
)
=>
setInput
(
event
.
target
.
value
)
}
autoSize
autoSize
...
...
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