Skip to content

Commit

Permalink
[front]indentation(#8274)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelineSebe committed Sep 19, 2024
1 parent 5a1b9eb commit d58f0d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,12 @@ const DecayRuleComponent = ({ queryRef }: DecayRuleComponentProps) => {

return (
<div className={classes.container}>
<Breadcrumbs variant="list" elements={[{ label: t_i18n('Settings') }, { label: t_i18n('Customization') }, {
label: t_i18n('Decay rules'),
link: '/dashboard/settings/customization/decay',
}, { label: decayRule.name, current: true }]}
<Breadcrumbs variant="list" elements={[
{ label: t_i18n('Settings') },
{ label: t_i18n('Customization') },
{ label: t_i18n('Decay rules'), link: '/dashboard/settings/customization/decay' },
{ label: decayRule.name, current: true },
]}
/>
<CustomizationMenu />
{!decayRule.built_in && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ const RootSubType = () => {
{
data.subType ? (
<>
<Breadcrumbs variant="list" elements={[{ label: t_i18n('Settings') }, { label: t_i18n('Customization') }, {
label: t_i18n('Entity types'),
link: '/dashboard/settings/customization/entity_types',
}]}
<Breadcrumbs variant="list" elements={[
{ label: t_i18n('Settings') },
{ label: t_i18n('Customization') },
{ label: t_i18n('Entity types'), link: '/dashboard/settings/customization/entity_types' },
]}
/>
<SubType data={data.subType}/>
</>
Expand Down

0 comments on commit d58f0d6

Please sign in to comment.