Skip to content

Commit

Permalink
item body off
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick committed Jul 19, 2023
1 parent 095cde6 commit 83444ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 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,13 +13,12 @@ import type { CSSResultGroup } from 'lit';
* @slot qti-rubric-block - the qti rubric block is placed above the item
*
*/
@customElement('qti-item-body')
// @customElement('qti-item-body')
export default class QtiItemBody extends LitElement {
static styles: CSSResultGroup = styles;

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

Expand Down

0 comments on commit 83444ed

Please sign in to comment.