Fix: Disabling textarea when linked. (#8818)

## Summary

Misaligned option setting when building the SimplifiedWidget.

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-8818-Fix-Disabling-textarea-when-linked-3056d73d365081f581a9f1322aaf60bd)
by [Unito](https://www.unito.io)

---------

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
Alexander Brown
2026-02-11 18:45:52 -08:00
committed by GitHub
parent 6012341fd1
commit 30ef6f2b8c
2 changed files with 8 additions and 7 deletions

View File

@@ -59,5 +59,7 @@ const filteredProps = computed(() =>
const displayName = computed(() => widget.label || widget.name)
const id = useId()
const isReadOnly = computed(() => widget.options?.read_only ?? false)
const isReadOnly = computed(
() => widget.options?.read_only ?? widget.options?.disabled ?? false
)
</script>