feat: add PowerInput component

This commit is contained in:
Ali BARIN
2022-02-17 20:15:08 +01:00
committed by Ömer Faruk Aydın
parent c864a1062d
commit d06f21c927
30 changed files with 848 additions and 115 deletions

View File

@@ -54,7 +54,6 @@ const createStepResolver = async (
const nextStepQueries = nextSteps.map(async (nextStep, index) => {
await nextStep.$query().patchAndFetch({
...nextStep,
position: step.position + index + 1,
});
});

View File

@@ -26,7 +26,6 @@ const deleteStepResolver = async (
const nextStepQueries = nextSteps.map(async (nextStep) => {
await nextStep.$query().patch({
...nextStep,
position: nextStep.position - 1,
});
});

View File

@@ -19,10 +19,7 @@ const updateFlowResolver = async (
})
.throwIfNotFound();
flow = await flow.$query().patchAndFetch({
...flow,
...params,
});
flow = await flow.$query().patchAndFetch(params);
return flow;
};