Skip to content

Commit

Permalink
refactor: improved SET field edit
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Feb 7, 2024
1 parent d698f27 commit da56905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/WorkspaceTabQueryTableRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const isBaseSelectField = computed(() => {
});
const enumArray = computed(() => {
if (props.fields[editingField.value] && props.fields[editingField.value].enumValues)
if (props.fields[editingField.value] && props.fields[editingField.value].enumValues && props.fields[editingField.value].type !== 'SET')
return props.fields[editingField.value].enumValues.replaceAll('\'', '').split(',');
return false;
});
Expand Down

0 comments on commit da56905

Please sign in to comment.