diff --git a/src/cellType.ts b/src/cellType.ts
index 0b3734f..b168af1 100644
--- a/src/cellType.ts
+++ b/src/cellType.ts
@@ -194,7 +194,10 @@ export class GraderCellHandler implements CellHandler {
`)}
- ${DEFINITIONS[this.graderType].description}
+
${DEFINITIONS[this.graderType].description}
+
+ ${DEFINITIONS[this.graderType].hasPoints ?
+ html`
@@ -208,13 +211,14 @@ export class GraderCellHandler implements CellHandler {
: undefined
}
-
+
+ ` : undefined }
`
return html`
diff --git a/src/elements/codeRunnerFeedback.ts b/src/elements/codeRunnerFeedback.ts
index 33d8b54..f663c80 100644
--- a/src/elements/codeRunnerFeedback.ts
+++ b/src/elements/codeRunnerFeedback.ts
@@ -70,7 +70,7 @@ export class CodeRunnerFeedbackElement extends LitElement.LitElement {
}
case("running-setup"): {
return html`
- ⚙️ Cell is running.. (for the first time, setup will take some extra time)
+ ⚙️ Cell is running.. (First time setup will take some extra time)
`
}
}