@@ -201,23 +201,23 @@ const AdminDashboard = () => {
201
201
< span > Download CSV</ span >
202
202
</ CSVLink > :
203
203
< >
204
- < p style = { { marginTop : "0px" , wordBreak : "break-all" } } >
204
+ < p style = { { marginTop : "0px" , wordBreak : "break-all" , width : "100%" } } >
205
205
{ `"Sheet ID" can be found from the URL of the Google Sheet (https://docs.google.com/spreadsheets/d/{Sheet ID})` }
206
206
</ p >
207
207
< TextField id = "outlined-basic" label = "Sheet ID" variant = "outlined" type = "text"
208
208
name = "sheet-id" fullWidth = { true } value = { sheetId } onChange = { ( event ) => {
209
209
setSheetId ( event . target . value )
210
210
} }
211
211
/>
212
- < p style = { { marginTop : "0px" } } >
212
+ < p style = { { marginTop : "0px" , width : "100%" } } >
213
213
{ `"Sheet Name" is the name of the tab you are on (found at the bottom of Google Sheets)` }
214
214
</ p >
215
215
< TextField id = "outlined-basic" label = "Sheet Name" variant = "outlined" type = "text"
216
216
name = "sheet-name" fullWidth = { true } value = { sheetName } onChange = { ( event ) => {
217
217
setSheetName ( event . target . value )
218
218
} }
219
219
/>
220
- < p style = { { marginTop : "0px" } } >
220
+ < p style = { { marginTop : "0px" , width : "100%" } } >
221
221
Name column refers to the column in the Google Sheet that references the preferred name of an applicant
222
222
</ p >
223
223
< TextField id = "outlined-basic" label = "Name Column" variant = "outlined" type = "text"
@@ -233,23 +233,23 @@ const AdminDashboard = () => {
233
233
setProjectPreferenceNumber ( parseInt ( event . target . value ) )
234
234
} }
235
235
/>
236
- < p style = { { marginTop : "0px" } } >
236
+ < p style = { { marginTop : "0px" , width : "100%" } } >
237
237
Columns of the Google Sheet that refer to project preferences
238
238
</ p >
239
239
< TextField id = "outlined-basic" label = "Project Columns" variant = "outlined" type = "text"
240
240
name = "project-columns" fullWidth = { true } value = { projectColumns } onChange = { ( event ) => {
241
241
setProjectColumns ( event . target . value )
242
242
} }
243
243
/>
244
- < p style = { { marginTop : "0px" } } >
244
+ < p style = { { marginTop : "0px" , width : "100%" } } >
245
245
{ `(Optional) Project name regex will extract the project name from the column title of the Google Sheet` }
246
246
</ p >
247
247
< TextField id = "outlined-basic" label = "Project Name Regex" variant = "outlined" type = "text"
248
248
name = "project-name-regex" fullWidth = { true } value = { projectNameRegex } onChange = { ( event ) => {
249
249
setProjectNameRegex ( event . target . value )
250
250
} }
251
251
/>
252
- < p style = { { marginTop : "0px" } } >
252
+ < p style = { { marginTop : "0px" , width : "100%" } } >
253
253
{ `(Optional) Project regex group will extract the project name from a specified index of the matched regex group, note this is 0-indexed` }
254
254
</ p >
255
255
< TextField id = "outlined-basic" label = "Project Regex Group" variant = "outlined" type = "number"
0 commit comments