Skip to content

Commit

Permalink
docs: update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick de Klein committed Feb 14, 2025
1 parent 23c65b2 commit b16b91f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/qti-components/qti-item-body/qti-item-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ import type { CSSResultGroup } from 'lit';
*
* @slot - item body content.
* @slot qti-rubric-block - the qti rubric block is placed above the item
*
* @part qti-rubric-block - the qti rubric block part
*/
@customElement('qti-item-body')
export class QtiItemBody extends LitElement {
static styles: CSSResultGroup = styles;

override render() {
return html`<slot part="qti-rubric-block" name="qti-rubric-block"></slot><slot></slot>`;
return html`<slot part="qti-rubric-blocks" name="qti-rubric-block"></slot><slot></slot>`;
}
}

Expand Down

0 comments on commit b16b91f

Please sign in to comment.