We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4017d96 commit 7bc532aCopy full SHA for 7bc532a
Frontend/src/components/collab/QuestionDisplay.jsx
@@ -13,7 +13,7 @@ const QuestionDisplay = ({ question }) => {
13
14
return (
15
<Card>
16
- <Card.Header>{question ? question.title : "Loading..."}</Card.Header>
+ <Card.Header>{question ? `${question.title} (${question.complexity})` : "Loading..."}</Card.Header>
17
<Card.Body style={{textAlign: 'left'}}>
18
<p>{question ? question.category.join(", ") : "Loading question description..."}</p>
19
<p>{question ? question.description : "Loading question description..."}</p>
0 commit comments