Skip to content

Commit 7c12dd4

Browse files
authored
Update admin-dashboard.js
1 parent ae18b15 commit 7c12dd4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pages/admin-dashboard.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -201,23 +201,23 @@ const AdminDashboard = () => {
201201
<span>Download CSV</span>
202202
</CSVLink> :
203203
<>
204-
<p style={{marginTop: "0px", wordBreak: "break-all"}}>
204+
<p style={{marginTop: "0px", wordBreak: "break-all", width: "100%"}}>
205205
{`"Sheet ID" can be found from the URL of the Google Sheet (https://docs.google.com/spreadsheets/d/{Sheet ID})`}
206206
</p>
207207
<TextField id="outlined-basic" label="Sheet ID" variant="outlined" type="text"
208208
name="sheet-id" fullWidth={true} value={sheetId} onChange={(event) => {
209209
setSheetId(event.target.value)
210210
}}
211211
/>
212-
<p style={{marginTop: "0px"}}>
212+
<p style={{marginTop: "0px", width: "100%"}}>
213213
{`"Sheet Name" is the name of the tab you are on (found at the bottom of Google Sheets)`}
214214
</p>
215215
<TextField id="outlined-basic" label="Sheet Name" variant="outlined" type="text"
216216
name="sheet-name" fullWidth={true} value={sheetName} onChange={(event) => {
217217
setSheetName(event.target.value)
218218
}}
219219
/>
220-
<p style={{marginTop: "0px"}}>
220+
<p style={{marginTop: "0px", width: "100%"}}>
221221
Name column refers to the column in the Google Sheet that references the preferred name of an applicant
222222
</p>
223223
<TextField id="outlined-basic" label="Name Column" variant="outlined" type="text"
@@ -233,23 +233,23 @@ const AdminDashboard = () => {
233233
setProjectPreferenceNumber(parseInt(event.target.value))
234234
}}
235235
/>
236-
<p style={{marginTop: "0px"}}>
236+
<p style={{marginTop: "0px", width: "100%"}}>
237237
Columns of the Google Sheet that refer to project preferences
238238
</p>
239239
<TextField id="outlined-basic" label="Project Columns" variant="outlined" type="text"
240240
name="project-columns" fullWidth={true} value={projectColumns} onChange={(event) => {
241241
setProjectColumns(event.target.value)
242242
}}
243243
/>
244-
<p style={{marginTop: "0px"}}>
244+
<p style={{marginTop: "0px", width: "100%"}}>
245245
{`(Optional) Project name regex will extract the project name from the column title of the Google Sheet`}
246246
</p>
247247
<TextField id="outlined-basic" label="Project Name Regex" variant="outlined" type="text"
248248
name="project-name-regex" fullWidth={true} value={projectNameRegex} onChange={(event) => {
249249
setProjectNameRegex(event.target.value)
250250
}}
251251
/>
252-
<p style={{marginTop: "0px"}}>
252+
<p style={{marginTop: "0px", width: "100%"}}>
253253
{`(Optional) Project regex group will extract the project name from a specified index of the matched regex group, note this is 0-indexed`}
254254
</p>
255255
<TextField id="outlined-basic" label="Project Regex Group" variant="outlined" type="number"

0 commit comments

Comments
 (0)