Skip to content

Commit

Permalink
Merge pull request #1470 from bartbutenaers/dynamic-injected-template
Browse files Browse the repository at this point in the history
Reset table selection (when loading new records)
  • Loading branch information
joepavitt authored Nov 29, 2024
2 parents a4fd7c5 + 13be41c commit c095fdc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/src/widgets/ui-table/UITable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ export default {
if (this.props.action === 'append') {
this.localData = value && value?.length > 0 ? [...this.localData || [], ...value] : value
} else {
this.selected = null
this.localData = value
}
Expand Down

0 comments on commit c095fdc

Please sign in to comment.