Skip to content

Commit

Permalink
Merge pull request #147 from k2maan/#122
Browse files Browse the repository at this point in the history
Fixed: completed picklist showing select option (#122)
  • Loading branch information
ravilodhi authored Aug 24, 2023
2 parents 1da0188 + 052bc49 commit 490c8bc
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 490c8bc

Please sign in to comment.