l-min-components 1.7.1551 → 1.7.1552

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.7.1551",
3
+ "version": "1.7.1552",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -77,7 +77,7 @@ const getColor = (aiScore) => {
77
77
  color = "rgba(13, 95, 219, 1)";
78
78
  } else if (aiScore >= 88 && aiScore <= 94) {
79
79
  color = "rgba(13, 125, 150, 1)";
80
- } else if (aiScore >= 95) {
80
+ } else if (aiScore > 94) {
81
81
  color = "rgba(85, 193, 0, 1)";
82
82
  } else {
83
83
  color = "rgba(249, 84, 84, 1)";
@@ -390,6 +390,7 @@ const ReportQuestions = ({
390
390
 
391
391
  <Comment
392
392
  data={comment}
393
+ key={comment?.created_at}
393
394
  testId={testId}
394
395
  setData={setComment}
395
396
  disabledAdd={!hasAnswer}