fix: about page

This commit is contained in:
2023-11-20 21:51:23 +00:00
parent 7b4e6db306
commit aaa56738b5
4 changed files with 11 additions and 5 deletions

View File

@ -17,12 +17,12 @@ export function AboutPage() {
}, []);
return (
<>
<div className="main-content p">
<h1>
<FormattedMessage defaultMessage="About" id="g5pX+a" />
</h1>
Version: <b>{GIT_VERSION}</b>
Version: <b>{__SNORT_VERSION__}</b>
<Markdown content={changelog} tags={[]} />
</>
</div>
);
}