Skip to content

Commit

Permalink
improved IngredientList usability
Browse files Browse the repository at this point in the history
  • Loading branch information
alex9849 committed Nov 1, 2023
1 parent 2d32e16 commit 52e780c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/IngredientList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:itemKey="step => productionSteps.indexOf(step)"
:model-value="productionSteps"
@update:model-value="onProductionStepListDrag($event)"
:disabled="!editable || disable"
:disabled="!editable || disable || !showPStepDragIcon"
:delay="400"
:delayOnTouchOnly="true"
:touchStartThreshold="10"
Expand Down Expand Up @@ -65,7 +65,7 @@
:animation="200"
:delay="400"
:delayOnTouchOnly="true"
:disabled="!editable || disable"
:disabled="!editable || disable || !showIngredientDragIcon"
:itemKey="step => productionSteps.indexOf(step)"
:model-value="element.stepIngredients"
:touchStartThreshold="10"
Expand Down

0 comments on commit 52e780c

Please sign in to comment.