Skip to content

Commit

Permalink
Merge branch 'staging' of https://github.com/serlo/frontend into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
elbotho committed Nov 13, 2024
2 parents 387bb89 + c7ee694 commit e25c619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/editor-web-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serlo/editor-web-component",
"version": "0.10.0",
"version": "0.10.1",
"homepage": "https://de.serlo.org/editor",
"bugs": {
"url": "https://github.com/serlo/frontend/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-web-component/src/editor-web-component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class EditorWebComponent extends HTMLElement {
) {
this.mode = newValue
} else if (name === 'use-shadow-dom') {
this._useShadowDOM = newValue !== 'false'
this._useShadowDOM = newValue === 'true'
} else if (name === 'editor-variant' && oldValue !== newValue) {
this.editorVariant = newValue as EditorVariant
} else if (name === 'plugins' && oldValue !== newValue) {
Expand Down

0 comments on commit e25c619

Please sign in to comment.