feat(ui): add dynamic prompts to t2i tab

- add param accordion for dynamic prompts
- update graphs
This commit is contained in:
psychedelicious
2023-06-26 16:20:57 +10:00
parent 9cfac4175f
commit 6390af229d
29 changed files with 479 additions and 576 deletions

View File

@@ -41,7 +41,15 @@ const IAISwitch = (props: Props) => {
{...formControlProps}
>
{label && (
<FormLabel my={1} flexGrow={1} {...formLabelProps}>
<FormLabel
my={1}
flexGrow={1}
sx={{
cursor: isDisabled ? 'not-allowed' : 'pointer',
...formLabelProps?.sx,
}}
{...formLabelProps}
>
{label}
</FormLabel>
)}