Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
dbolotin committed Nov 27, 2024
1 parent 54155d9 commit 821a54b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions model/src/index.ts
Original file line number Diff line number Diff line change
@@ -65,13 +65,13 @@ export const platforma = BlockModel.create('Heavy')
: undefined;
})

// .output('clones', (ctx) => {
// const collection = ctx.outputs?.resolve('clones')?.parsePObjectCollection();
// if (collection === undefined) return undefined;
// // if (collection === undefined || !collection.isComplete) return undefined;
// const pColumns = Object.values(collection).filter(isPColumn);
// return ctx.createPFrame(pColumns);
// })
.output('clones', (ctx) => {
const collection = ctx.outputs?.resolve('clones')?.parsePObjectCollection();
if (collection === undefined) return undefined;
// if (collection === undefined || !collection.isComplete) return undefined;
const pColumns = Object.values(collection).filter(isPColumn);
return ctx.createPFrame(pColumns);
})

.retentiveOutput('inputOptions', (ctx) => {
return ctx.resultPool.getOptions((v) => {

0 comments on commit 821a54b

Please sign in to comment.