Skip to content

Commit

Permalink
Update height
Browse files Browse the repository at this point in the history
  • Loading branch information
abishekTa-egov committed Feb 5, 2025
1 parent c571ae3 commit 20996c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,5 +551,12 @@ tbody tr:last-child td:last-child .digit-dropdown-employee-select-wrap .digit-dr

.pop-inbox-wrapper-filter-table-wrapper.planInbox-filtercard-table-wrapper {
align-items: stretch;

}

.filter-card{
&.plan-inbox-filtercard{
.content-container{
flex:1;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const InboxFilterWrapper = (props) => {
const [filterValues, setFilterValues] = useState(
{ status: null, onRoadCondition: null, terrain: null, securityQ1: null, securityQ2: null, facilityId:null }
);

// Default selected option
let defaultSelectedOptions = props.defaultValue
? Object.entries(props.defaultValue).reduce((acc, [key, value]) => {
Expand Down Expand Up @@ -161,9 +161,9 @@ const InboxFilterWrapper = (props) => {
primaryActionLabel={resultArray.length > 0 && t(props?.primaryActionLabel)}
secondaryActionLabel={resultArray.length > 0 && t(props?.secondaryActionLabel)}
title={t(props?.title)}
className="filterCardCustom"
className={props?.isPlanInbox ? "plan-inbox-filtercard" : ""}
>
<div className="gap-between-dropdowns" style={{ height: "18rem" }}>
<div className="gap-between-dropdowns">
{/* Only render LabelFieldPair if resultArray has items */}
{resultArray.length > 0 && (
<LabelFieldPair vertical style={{ marginBottom: "1rem" }} >
Expand Down

0 comments on commit 20996c8

Please sign in to comment.