mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 13:20:43 +00:00
Add QGoogleDriveFolderPicker
This commit is contained in:
@ -84,8 +84,8 @@ function ProcessLinkCard({
|
||||
</MDTypography>
|
||||
{
|
||||
isReport
|
||||
? `Click here to run the process called ${title}.`
|
||||
: `Click here to access the ${title} report.`
|
||||
? `Click here to access the ${title} report.`
|
||||
: `Click here to run the process called ${title}.`
|
||||
}
|
||||
{percentage.label}
|
||||
</MDTypography>
|
||||
|
@ -87,6 +87,11 @@ function QDynamicForm(props: Props): JSX.Element
|
||||
values[fieldName] = "";
|
||||
}
|
||||
|
||||
if (field.omitFromQDynamicForm)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
if (field.type === "file")
|
||||
{
|
||||
return (
|
||||
@ -95,7 +100,7 @@ function QDynamicForm(props: Props): JSX.Element
|
||||
|
||||
<Box display="flex" alignItems="center">
|
||||
<Button variant="outlined" component="label">
|
||||
<span style={{color: "#606060"}}>Choose file to upload</span>
|
||||
<span style={{color: colors.lightBlue[500]}}>Choose file to upload</span>
|
||||
<input
|
||||
id={fieldName}
|
||||
name={fieldName}
|
||||
|
Reference in New Issue
Block a user