File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
hwproj.front/src/components Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,11 @@ const CourseFilter: FC<ICourseFilterProps> = (props) => {
121
121
< TextField
122
122
{ ...params }
123
123
variant = "outlined"
124
- label = { state . selectedHomeworks . length === 0 ? "" : "Работы " }
125
- placeholder = { state . selectedHomeworks . length === 0 ? "Все работы " : "" }
124
+ label = { state . selectedHomeworks . length === 0 ? "" : "Задания " }
125
+ placeholder = { state . selectedHomeworks . length === 0 ? "Все задания " : "" }
126
126
/>
127
127
) }
128
- noOptionsText = { 'На курсе больше нет работ ' }
128
+ noOptionsText = { 'На курсе больше нет заданий ' }
129
129
value = { state . selectedHomeworks }
130
130
onChange = { ( _ , values ) => {
131
131
setState ( ( prevState ) => ( {
Original file line number Diff line number Diff line change @@ -200,13 +200,7 @@ const InviteExpertModal: FC<IInviteExpertProps> = (props) => {
200
200
</ Grid >
201
201
</ Grid >
202
202
{ state . selectedCourseId !== - 1 && (
203
- < Grid container style = { { marginTop : '15px' } } direction = "column" >
204
- { ! isWorkspaceLoading &&
205
- < Grid item >
206
- < Typography >
207
- Выберите задачи:
208
- </ Typography >
209
- </ Grid > }
203
+ < Grid container direction = "column" >
210
204
< Grid item >
211
205
< CourseFilter key = { state . selectedCourseId }
212
206
courseId = { state . selectedCourseId }
You can’t perform that action at this time.
0 commit comments