Skip to content

Commit

Permalink
[frontend] add breadcrumbs on decay rules page (#6164)
Browse files Browse the repository at this point in the history
  • Loading branch information
frapuks committed Feb 29, 2024
1 parent 0811972 commit 28325b6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { DecayRulesLinesPaginationQuery, DecayRulesLinesPaginationQuery$variable
import { DecayRulesLine_node$data } from './__generated__/DecayRulesLine_node.graphql';
import useAuth from '../../../../utils/hooks/useAuth';
import { INDICATOR_DECAY_MANAGER } from '../../../../utils/platformModulesHelper';
import Breadcrumbs from '../../../../components/Breadcrumbs';

const LOCAL_STORAGE_KEY = 'view-decay-rules';

Expand Down Expand Up @@ -151,6 +152,7 @@ const DecayRules = () => {
return (
<div className={classes.container}>
<CustomizationMenu />
<Breadcrumbs variant="list" elements={[{ label: t_i18n('Settings') }, { label: t_i18n('Customization') }, { label: t_i18n('Decay rules'), current: true }]} />
{renderLines()}
<DecayRuleCreation paginationOptions={queryPaginationOptions} />
</div>
Expand Down

0 comments on commit 28325b6

Please sign in to comment.