Skip to content

Commit

Permalink
fix: [DHIS2-16993] Text and long text DEs are missing arrows in chang…
Browse files Browse the repository at this point in the history
…elog when deleted (#3827)

* fix: make arrow size static

* fix: revert changes to text
  • Loading branch information
henrikmv authored Oct 15, 2024
1 parent 5444ac7 commit 5e6dfa6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const styles = {
const Updated = ({ previousValue, currentValue, classes }) => (
<div className={classes.container}>
<span className={classes.previousValue}>{previousValue}</span>
<IconArrowRight16 />
<span><IconArrowRight16 /></span>
<span className={classes.currentValue}>{currentValue}</span>
</div>
);
Expand All @@ -50,7 +50,7 @@ const Created = ({ currentValue, classes }) => (
const Deleted = ({ previousValue, classes }) => (
<div className={classes.container}>
<span className={classes.previousValue}>{previousValue}</span>
<IconArrowRight16 />
<span><IconArrowRight16 /></span>
<Tag negative>{i18n.t('Deleted')}</Tag>
</div>
);
Expand Down

0 comments on commit 5e6dfa6

Please sign in to comment.