diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-01-11 07:45:35 -0400 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-01-11 07:45:35 -0400 |
| commit | 3051e23f1431eb3062563512061dc54b84bbf858 (patch) | |
| tree | 3dc590c32ec3209c0e4b28336fc939e0dda0ba43 /src/data | |
| parent | 062d4e6b4089a4cd0254e805e92aeb7b719683d5 (diff) | |
data: inheritFromContributionPresets: fix not actually exposing
aka we got the inherited value and then DID NOTHING WITH IT
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/composite/things/contribution/inheritFromContributionPresets.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/data/composite/things/contribution/inheritFromContributionPresets.js b/src/data/composite/things/contribution/inheritFromContributionPresets.js index 17387404..1cefae1b 100644 --- a/src/data/composite/things/contribution/inheritFromContributionPresets.js +++ b/src/data/composite/things/contribution/inheritFromContributionPresets.js @@ -41,10 +41,8 @@ export default templateCompositeFrom({ compute: (continuation, { ['#values']: values, ['#index']: index, - }) => continuation({ - ['#value']: - values[index], - }), + }) => + continuation.exit(values[index]), }, ], }); |