Skip to content

Commit

Permalink
fix: remove experimental from form
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsJacobsen committed Mar 14, 2024
1 parent 4fd3c08 commit eb11c6a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,12 @@ export default class InlangSettings extends LitElement {
${(value.meta as { displayName?: { en: string } })?.displayName?.en || key}
</h3>
${Object.entries(value.schema.properties).map(([property, schema]) => {
if (property === "$schema" || property === "modules") return undefined
if (
property === "$schema" ||
property === "modules" ||
property === "experimental"
)
return undefined
return key === "internal"
? html`
<simple-input
Expand Down

0 comments on commit eb11c6a

Please sign in to comment.