Skip to content

Commit

Permalink
Merge pull request AOT-Technologies#2465 from fahad-aot/bugfix/fwf-41…
Browse files Browse the repository at this point in the history
…29-ui-issues

bugfix/fwf-4129:Fixed ui issuesin opensource
  • Loading branch information
arun-s-aot authored Dec 30, 2024
2 parents c44b2e9 + ad20d75 commit af77ba7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions forms-flow-web/src/components/Dashboard/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ const Dashboard = React.memo(() => {
size="sm"
onHide={() => setShow(false)}
aria-labelledby="example-custom-modal-styling-title"
centered
>
<Modal.Header>
<Modal.Title id="example-custom-modal-styling-title">
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-web/src/components/Form/EditForm/FormEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ const EditComponent = () => {
<div className="d-flex align-items-center justify-content-between">
<BackToPrevIcon onClick={backToForm} />
<div className="mx-4 editor-header-text">
{textTruncate(90,90,formData.title)}
{textTruncate(75,75,formData.title)}
</div>
<span
data-testid={`form-status-${form._id}`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ word-break: break-all;
min-height: 200px;
overflow-y: auto;
}
//will be removed later
.searchtype-dropdown{
width: 26vh;
color: #2137dc;

}

Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ const TaskFilterViewComponent = React.memo(
title={t("Task variables")}
className="form-control"
name={e.name}
type="number"
type={e.name === "applicationId" ? "number" : "text"}
value={variable?.value ? variable.value : ""}
onChange={(e) =>
handleProcessVariables(e.target.name, e.target.value)
Expand Down

0 comments on commit af77ba7

Please sign in to comment.