style(IOOutputView/index.tsx): update className to include h-full for consistent styling across components
style(IOview/index.tsx): update className to include w-full for consistent styling across components
This commit is contained in:
parent
da82d33493
commit
5ae5feb64a
2 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ export default function IOOutputView({
|
|||
case "TextOutput":
|
||||
return (
|
||||
<Textarea
|
||||
className="w-full custom-scroll"
|
||||
className="w-full h-full custom-scroll"
|
||||
placeholder={"Empty"}
|
||||
// update to real value on flowPool
|
||||
value={
|
||||
|
|
@ -31,7 +31,7 @@ export default function IOOutputView({
|
|||
default:
|
||||
return (
|
||||
<Textarea
|
||||
className="w-full custom-scroll"
|
||||
className="w-full h-full custom-scroll"
|
||||
placeholder={"Enter text..."}
|
||||
value={node.data.node!.template["input_value"]}
|
||||
onChange={(e) => {
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ export default function IOView({ children, open, setOpen }): JSX.Element {
|
|||
</button>
|
||||
{selectedViewField.type}
|
||||
</div>
|
||||
<div className="h-full">
|
||||
<div className="h-full w-full">
|
||||
{inputs.some(
|
||||
(input) => input.id === selectedViewField.id
|
||||
) ? (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue