Skip to content

Commit

Permalink
Clear loading indicator in case of error
Browse files Browse the repository at this point in the history
  • Loading branch information
a-h-abdelsalam authored and timopollmeier committed Dec 11, 2023
1 parent e6c0b37 commit 483aea0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/web/pages/tags/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ class TagDialog extends React.Component {
this.setState({
resourceOptions: data,
});
})
.catch(err => {
this.isLoading = false;
throw err;
});
}

Expand Down

0 comments on commit 483aea0

Please sign in to comment.