Skip to content

Commit

Permalink
feat(groups): revert empty group attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
narduin committed Dec 19, 2024
1 parent e028241 commit 52c24a4
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/components/forms/SelectTopicGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ const groupOptions = computed(() =>
Array.from(datasetsGroups.value, ([key]) => key)
)
const setNoGroupValue = () => {
if (!datasetProperties.value.group) {
datasetProperties.value.group = NO_GROUP
}
}
const clear = () => {
datasetProperties.value.group = undefined
}
Expand All @@ -47,10 +41,6 @@ const trimGroupName = (groupName: string) => {
// prevents spaces at the beginning and end of the group name
datasetProperties.value.group = groupName.trim()
}
onMounted(() => {
setNoGroupValue()
})
</script>

<template>
Expand Down

0 comments on commit 52c24a4

Please sign in to comment.