diff --git a/pyproject.toml b/pyproject.toml index fdc8dd5be..2839baf24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "writer" -version = "0.7.1" +version = "0.7.2" description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform." authors = ["Writer, Inc."] readme = "README.md" diff --git a/src/ui/src/builder/BuilderFieldsText.vue b/src/ui/src/builder/BuilderFieldsText.vue index c77e9ca90..8a8e9adf9 100644 --- a/src/ui/src/builder/BuilderFieldsText.vue +++ b/src/ui/src/builder/BuilderFieldsText.vue @@ -8,6 +8,7 @@ > { return definition.fields[fieldKey.value]; }); +const inputId = computed(() => `${props.componentId}-${props.fieldKey}`); + const options = computed(() => { const field = templateField.value; if (field.options) { @@ -57,7 +61,7 @@ const options = computed(() => { ? field.options(wf, componentId.value) : field.options; } - return []; + return {}; }); const handleInput = (ev: Event) => { diff --git a/src/ui/src/core_components/content/CoreAnnotatedText.vue b/src/ui/src/core_components/content/CoreAnnotatedText.vue index 0636f818b..6e41e0e15 100644 --- a/src/ui/src/core_components/content/CoreAnnotatedText.vue +++ b/src/ui/src/core_components/content/CoreAnnotatedText.vue @@ -26,7 +26,12 @@