Skip to content

Commit

Permalink
fix(ui): move minor icon to the start of the title of the release
Browse files Browse the repository at this point in the history
Ref: SRX-8WMJ13
  • Loading branch information
AminSlk committed Oct 15, 2024
1 parent eabf9bf commit d03ffe9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export const ReleaseCard: React.FC<ReleaseCardProps> = (props) => {
</div>
);

const firstLine = sourceMessage.split('\n')[0] + (isMinor ? '💤' : '');
const firstLine = (isMinor ? '💤' : '') + sourceMessage.split('\n')[0];
return (
<Tooltip id={app + version} tooltipContent={tooltipContents}>
<div className={'release-card__container'}>
Expand Down

0 comments on commit d03ffe9

Please sign in to comment.