Skip to content

Commit

Permalink
fix(ui): TE-XX added edit dimension button
Browse files Browse the repository at this point in the history
  • Loading branch information
harshilvelotio committed Oct 29, 2024
1 parent a865bf8 commit dd861eb
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1841,6 +1841,38 @@ export const AlertsCreateEasyPage: FunctionComponent = () => {
</Grid>
</Grid>
</Grid>
{compositeFilters &&
dimension ===
SelectDimensionsOptions.DIMENSION_RECOMMENDER ? (
<Grid
item
xs={
12
}
>
<Button
color="primary"
startIcon={
<AddCircleOutline />
}
variant="outlined"
onClick={() =>
setOpenCompositeFilterModal(
true
)
}
>
{t(
"label.edit-entity",
{
entity: t(
"label.dimensions"
),
}
)}
</Button>
</Grid>
) : null}

{algorithmOption ? (
<Grid
Expand Down

0 comments on commit dd861eb

Please sign in to comment.