Skip to content

Commit

Permalink
23967 Removed spinner for approved continuation in drafts (#700)
Browse files Browse the repository at this point in the history
* Add special case to fix approved continuation in drafts bug

* Move check into highlightTask method

* Bump version numbers to 7.4.3
  • Loading branch information
leodube-aot authored Nov 7, 2024
1 parent 9b07948 commit 40c7240
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-filings-ui",
"version": "7.4.2",
"version": "7.4.3",
"private": true,
"appName": "Filings UI",
"sbcName": "SBC Common Components",
Expand Down
6 changes: 6 additions & 0 deletions src/components/Dashboard/TodoList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,12 @@ export default class TodoList extends Mixins(AllowableActionsMixin, DateMixin, N
// ensure task is in todo list
const index = this.todoItems.findIndex(h => h.filingId === id)
if (index >= 0) {
// special case to not show spinner for continuation in drafts
if (EnumUtilities.isTypeContinuationIn(this.todoItems[index]) &&
!EnumUtilities.isStatusPending(this.todoItems[index])) {
return
}
this.inProcessFiling = id
// start the check process
Expand Down

0 comments on commit 40c7240

Please sign in to comment.