diff --git a/packages/builder/src/components/userInterface/temporaryPanelStructure.js b/packages/builder/src/components/userInterface/temporaryPanelStructure.js
index 556e475f2b..e18ca6014f 100644
--- a/packages/builder/src/components/userInterface/temporaryPanelStructure.js
+++ b/packages/builder/src/components/userInterface/temporaryPanelStructure.js
@@ -188,25 +188,17 @@ export default {
],
},
},
- {
- _component: "@budibase/standard-components/richtext",
- name: "Rich Text",
- description:
- "A component that allows the user to enter long form text.",
- icon: "ri-edit-box-line",
- properties: {
- design: { ...all },
- settings: [
- { label: "Label", key: "label", control: Input },
- {
- label: "Type",
- key: "type",
- control: OptionSelect,
- options: ["text", "password"],
- },
- ],
- },
- },
+ // {
+ // _component: "@budibase/standard-components/richtext",
+ // name: "Rich Text",
+ // description:
+ // "A component that allows the user to enter long form text.",
+ // icon: "ri-edit-box-line",
+ // properties: {
+ // design: { ...all },
+ // settings: [],
+ // },
+ // },
{
_component: "@budibase/standard-components/datepicker",
name: "Date Picker",
diff --git a/packages/standard-components/components.json b/packages/standard-components/components.json
index 6bab3d52ca..a766d3084c 100644
--- a/packages/standard-components/components.json
+++ b/packages/standard-components/components.json
@@ -178,8 +178,6 @@
"name": "Rich Text",
"description": "A component that allows the user to enter long form text.",
"props": {
- "label": "string",
- "type": "string",
"value": "string"
}
},
diff --git a/packages/standard-components/src/RichText.svelte b/packages/standard-components/src/RichText.svelte
index 95484ab4ed..a033d3cc1d 100644
--- a/packages/standard-components/src/RichText.svelte
+++ b/packages/standard-components/src/RichText.svelte
@@ -1,34 +1,44 @@
+ },
+ "placeholder": "Type something...",
+ "theme": "snow"
+ }
+
-
\ No newline at end of file
+
\ No newline at end of file