Skip to content

Commit

Permalink
refactor: dataSelector component by removing debug log statement
Browse files Browse the repository at this point in the history
Signed-off-by: Wanjin Noh <wanjin@megazone.com>
  • Loading branch information
WANZARGEN committed Jan 7, 2025
1 parent 81ec7d6 commit 54148a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/web/src/common/components/select/DataSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ onMounted(() => {
initiateMenu();
});
watch([() => props.menu, () => props.handler], ([m, h]) => {
console.debug('DataSelector: menu or handler changed', m, h);
watch([() => props.menu, () => props.handler], () => {
selected.value = [];
emit('update:selected', selected.value);
initiateMenu();
Expand Down

0 comments on commit 54148a0

Please sign in to comment.