diff --git a/package-lock.json b/package-lock.json index 1dded51bd..d90d2e769 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "business-filings-ui", - "version": "7.4.2", + "version": "7.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "business-filings-ui", - "version": "7.4.2", + "version": "7.4.3", "dependencies": { "@babel/compat-data": "^7.21.5", "@bcrs-shared-components/base-address": "2.0.9", diff --git a/package.json b/package.json index 2cda40bf9..15bd40408 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/components/Dashboard/TodoList.vue b/src/components/Dashboard/TodoList.vue index 550848134..76b100663 100644 --- a/src/components/Dashboard/TodoList.vue +++ b/src/components/Dashboard/TodoList.vue @@ -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