Fixed icon color (#80)

This commit is contained in:
AsadAzam
2021-04-15 15:00:51 +05:00
committed by GitHub
parent 87aec4a28a
commit 994330e2c7

View File

@@ -19,7 +19,7 @@ function FeaturesTable({ apps, features, intl }) {
// i.e, if this app has the current feature, check it!
appCheckmarkCells[app.id] = app.featureIds.includes(feature.id) ? (
<div key={`${app.id}&${feature.id}`}>
<FontAwesomeIcon icon={faCheck} />
<FontAwesomeIcon icon={faCheck} color="green" />
</div>
) : null;
});