File tree Expand file tree Collapse file tree 6 files changed +78
-72
lines changed Expand file tree Collapse file tree 6 files changed +78
-72
lines changed Original file line number Diff line number Diff line change 36
36
"embla-carousel" : " ^8.1.8" ,
37
37
"embla-carousel-autoplay" : " ^8.1.8" ,
38
38
"embla-carousel-react" : " ^8.1.8" ,
39
- "i18next" : " ^23.12.2 " ,
39
+ "i18next" : " ^23.12.3 " ,
40
40
"i18next-browser-languagedetector" : " ^8.0.0" ,
41
41
"katex" : " ^0.16.11" ,
42
42
"lz-string" : " ^1.5.0" ,
68
68
"@types/prismjs" : " ^1.26.4" ,
69
69
"@types/react" : " ^18.3.3" ,
70
70
"@types/react-dom" : " ^18.3.0" ,
71
- "@typescript-eslint/eslint-plugin" : " ^8.0.1 " ,
72
- "@typescript-eslint/parser" : " ^8.0.1 " ,
71
+ "@typescript-eslint/eslint-plugin" : " ^8.1.0 " ,
72
+ "@typescript-eslint/parser" : " ^8.1.0 " ,
73
73
"@vitejs/plugin-react" : " ^4.3.1" ,
74
74
"axios" : " ^1.7.3" ,
75
75
"babel-plugin-prismjs" : " ^2.1.0" ,
86
86
"postcss-simple-vars" : " ^7.0.1" ,
87
87
"prettier" : " ~3.3.3" ,
88
88
"rollup" : " ^4.20.0" ,
89
- "swagger-typescript-api" : " ^13.0.19 " ,
89
+ "swagger-typescript-api" : " ^13.0.21 " ,
90
90
"tslib" : " ^2.6.3" ,
91
91
"typescript" : " 5.5.4" ,
92
92
"vite" : " ^5.4.0" ,
Original file line number Diff line number Diff line change 341
341
},
342
342
"label" : {
343
343
"games" : {
344
- "public " : " Public " ,
344
+ "hide " : " Hide " ,
345
345
"summary" : " Summary"
346
346
},
347
347
"instances" : {
Original file line number Diff line number Diff line change 341
341
},
342
342
"label" : {
343
343
"games" : {
344
- "public " : " 公開 " ,
344
+ "hide " : " 隠す " ,
345
345
"summary" : " 概要"
346
346
},
347
347
"instances" : {
Original file line number Diff line number Diff line change 341
341
},
342
342
"label" : {
343
343
"games" : {
344
- "public " : " 公开 " ,
344
+ "hide " : " 隐藏 " ,
345
345
"summary" : " 简介"
346
346
},
347
347
"instances" : {
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ const Games: FC = () => {
123
123
< Table className = { tableClasses . table } >
124
124
< Table . Thead >
125
125
< Table . Tr >
126
- < Table . Th style = { { minWidth : '1.8rem' } } > { t ( 'admin.label.games.public ' ) } </ Table . Th >
126
+ < Table . Th style = { { minWidth : '1.8rem' } } > { t ( 'admin.label.games.hide ' ) } </ Table . Th >
127
127
< Table . Th > { t ( 'common.label.game' ) } </ Table . Th >
128
128
< Table . Th > { t ( 'common.label.time' ) } </ Table . Th >
129
129
< Table . Th > { t ( 'admin.label.games.summary' ) } </ Table . Th >
@@ -141,7 +141,7 @@ const Games: FC = () => {
141
141
< Table . Td >
142
142
< Switch
143
143
disabled = { disabled }
144
- checked = { ! game . hidden }
144
+ checked = { game . hidden }
145
145
onChange = { ( ) => onToggleHidden ( game ) }
146
146
/>
147
147
</ Table . Td >
You can’t perform that action at this time.
0 commit comments