sort version keys

This commit is contained in:
burnettk 2023-05-17 14:13:37 -04:00
parent 20cd2f08fd
commit d77156938a
No known key found for this signature in database
1 changed files with 13 additions and 11 deletions

View File

@ -28,17 +28,19 @@ export default function About() {
versionInfoDict: ObjectWithStringKeysAndValues | null
) => {
if (versionInfoDict !== null && Object.keys(versionInfoDict).length) {
const tableRows = Object.keys(versionInfoDict).map((key) => {
const value = versionInfoDict[key];
return (
<tr key={key}>
<td className="version-info-column">
<strong>{key}</strong>
</td>
<td className="version-info-column">{value}</td>
</tr>
);
});
const tableRows = Object.keys(versionInfoDict)
.sort()
.map((key) => {
const value = versionInfoDict[key];
return (
<tr key={key}>
<td className="version-info-column">
<strong>{key}</strong>
</td>
<td className="version-info-column">{value}</td>
</tr>
);
});
return (
<>
<h2 title="This information is configurable by specifying values in version_info.json in the app at build time">