Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed Oct 9, 2023
1 parent fcde181 commit 2ab8f95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/features/tags/BulkTagModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ const BulkTagModal: React.FC<BulkTagModalProps> = ({
},
})
.then(({ json = {} }) => {
const skipped = json.objects_tagged;
const tagged = json.objects_skipped;
const skipped = json.objects_skipped;
const tagged = json.objects_tagged;
if (skipped.length > 0) {
addSuccessToast(
t(
Expand Down

0 comments on commit 2ab8f95

Please sign in to comment.