Skip to content

Commit

Permalink
only one checkbox can be selected
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadoop committed Dec 25, 2024
1 parent 893ae22 commit b07dbdb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions amoro-web/src/views/catalogs/Detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,10 @@ async function changeMetastore() {
}

async function changeTableFormat() {
if (formState.tableFormatList.length > 1) {
const lastSelected = formState.tableFormatList[formState.tableFormatList.length - 1];
formState.tableFormatList = [lastSelected];
}
await changeProperties()
}

Expand Down

0 comments on commit b07dbdb

Please sign in to comment.