Skip to content

Commit

Permalink
feat(storefront): filter theme | hj | #3315
Browse files Browse the repository at this point in the history
  • Loading branch information
henrijoss committed Jun 19, 2024
1 parent 3f46a12 commit ec26f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/storefront/src/components/ConfigureProps.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="configurator--props">
<p-select
v-for="[key, value] in Object.entries(componentProps).filter(([key, value]) => !value.isAria)"
v-for="[key, value] in Object.entries(componentProps).filter(([key, value]) => !value.isAria && key !== 'theme')"
:key="key"
:id="key"
:label="key"
Expand Down

0 comments on commit ec26f0d

Please sign in to comment.