Skip to content

Commit

Permalink
Fixed: completed picklist showing select option (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
k2maan committed Jul 13, 2023
1 parent 00ddd75 commit 052bc49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Picklist-detail-item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<p>{{ $t("Color") }} : {{ $filters.getFeatures(getProduct(picklistItem.productId).featureHierarchy, '1/COLOR/') }}</p>
<p>{{ $t("Size") }} : {{ $filters.getFeatures(getProduct(picklistItem.productId).featureHierarchy, '1/SIZE/') }}</p>
</ion-label>
<ion-checkbox :modelValue="picklistItem.isChecked" slot="end" />
<ion-checkbox v-if="picklistItem.statusId !== 'PICKLIST_COMPLETED'" :modelValue="picklistItem.isChecked" slot="end" />
</ion-item>
</template>

Expand Down

0 comments on commit 052bc49

Please sign in to comment.