File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/packages/frontend/chat Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ interface Props {
70
70
project_id : string ;
71
71
path : string ;
72
72
is_visible ?: boolean ;
73
- fontSize : number ;
73
+ font_size : number ;
74
74
desc ?;
75
75
}
76
76
@@ -79,7 +79,7 @@ export function ChatRoom({
79
79
project_id,
80
80
path,
81
81
is_visible,
82
- fontSize ,
82
+ font_size ,
83
83
desc,
84
84
} : Props ) {
85
85
const useEditor = useEditorRedux < ChatState > ( { project_id, path } ) ;
@@ -288,7 +288,7 @@ export function ChatRoom({
288
288
path = { path }
289
289
scrollToBottomRef = { scrollToBottomRef }
290
290
mode = { "standalone" }
291
- fontSize = { fontSize }
291
+ fontSize = { font_size }
292
292
search = { search }
293
293
filterRecentH = { filterRecentH }
294
294
selectedHashtags = { selectedHashtags }
@@ -307,7 +307,7 @@ export function ChatRoom({
307
307
} }
308
308
>
309
309
< ChatInput
310
- fontSize = { fontSize }
310
+ fontSize = { font_size }
311
311
autoFocus
312
312
cacheId = { `${ path } ${ project_id } -new` }
313
313
input = { input }
You can’t perform that action at this time.
0 commit comments