l-min-components 1.7.1412 → 1.7.1413
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
|
@@ -72,7 +72,7 @@ const SpeechAnalysis = ({ Aidata, isPersonal }) => {
|
|
|
72
72
|
<HandIcon />
|
|
73
73
|
<p>Click on the words to see detailed feedback</p>
|
|
74
74
|
</div>
|
|
75
|
-
{
|
|
75
|
+
{true && (
|
|
76
76
|
<div className="">
|
|
77
77
|
<PlayButton audio={Aidata?.audioData} />
|
|
78
78
|
<PlayButton type="ai" refernceText={Aidata?.data?.Reference} />
|
|
@@ -74,8 +74,8 @@ const FullAnalysis = ({ data, onClose, accountType }) => {
|
|
|
74
74
|
<ArrowLeft />
|
|
75
75
|
<h1>Full analysis</h1>
|
|
76
76
|
</Header>
|
|
77
|
-
<Content className={classNames({ personal:
|
|
78
|
-
{
|
|
77
|
+
<Content className={classNames({ personal: true })}>
|
|
78
|
+
{null && (
|
|
79
79
|
<Sidebar>
|
|
80
80
|
<ProgressSidebar>
|
|
81
81
|
<ProgressCircleSection>
|
|
@@ -121,7 +121,7 @@ const ReportQuestions = ({
|
|
|
121
121
|
{toggleGrade && (
|
|
122
122
|
<GradingModal
|
|
123
123
|
aiValue={data?.ai_score}
|
|
124
|
-
noAi
|
|
124
|
+
noAi
|
|
125
125
|
setScore={handleScore}
|
|
126
126
|
defaultScore={intructorScore}
|
|
127
127
|
onClose={() => {
|
|
@@ -145,14 +145,16 @@ const ReportQuestions = ({
|
|
|
145
145
|
</ScoreBadge>
|
|
146
146
|
) : (
|
|
147
147
|
<>
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
148
|
+
{null && (
|
|
149
|
+
<ScoreBadge
|
|
150
|
+
ai
|
|
151
|
+
className={classNames({
|
|
152
|
+
hidden: noAi,
|
|
153
|
+
})}
|
|
154
|
+
>
|
|
155
|
+
AI score: <span>{parseInt(data?.ai_score || 0)}%</span>
|
|
156
|
+
</ScoreBadge>
|
|
157
|
+
)}
|
|
156
158
|
<ScoreRight>
|
|
157
159
|
<></>
|
|
158
160
|
<ScoreBadge
|