Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Commit

Permalink
Made resizeable (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
tr0ub1eM4k3r authored May 23, 2022
1 parent 4526f97 commit f383de8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/univeralComponents/Editbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const EditBox = (props) => {
onFocus={handleFocus}
className={`editbox-textarea ${isEditable ? "text-edit active-box" : ""} `}
required={true}
style={{resize: "none"}}
style={{resize: "vertical"}}
></textarea>
<div className={`edit-bottom d-flex justify-content-end text-detail ${isEditable ? "" : "invisible"}`}>
<i className="remained-char">
Expand Down
2 changes: 1 addition & 1 deletion src/components/webPanel/FlowsCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export default function FlowsCreate() {
{state.contOpt?.map((element, i) => <CreateInputArea key={i} index={i} text={element} inpFunc={setContOpt} inpValue={state.contentOptional}/>)}
{state.optOpt?.map((element, i) => <CreateInputArea key={i} index={i} text={element} inpFunc={setOptOpt} inpValue={state.optionsOptional}/>)}
</CreateFlowGrid>
<CreateFlowButton type="submit" onClick={PostData}>Create Flow</CreateFlowButton>
<CreateFlowButton type="submit" onClick={PostData}>Save Flow</CreateFlowButton>
</WebPanelBackground>
)
}

0 comments on commit f383de8

Please sign in to comment.