Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix: Restore assets API short-circuit in WidgetSelectDropdown
  • Loading branch information
DrJKL committed Dec 16, 2025
commit 9c484fce4c19b1235828cdfa9c8c1e64fdff190f
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ const outputItems = computed<DropdownItem[]>(() => {
})

const allItems = computed<DropdownItem[]>(() => {
if (props.isAssetMode && assetData) {
return assetData.dropdownItems.value
}
return [...inputItems.value, ...outputItems.value]
})

Expand Down
Loading