ntk-cms-api 18.0.10 → 18.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -143,6 +143,14 @@ class NtkCmsApiStoreService {
143
143
  }
144
144
  }
145
145
  }
146
+ processInRun(name) {
147
+ if (this.state?.ntkCmsAPiState?.inProcessingList) {
148
+ const index = this.state.ntkCmsAPiState.inProcessingList.indexOf(name);
149
+ if (index >= 0)
150
+ return true;
151
+ }
152
+ return false;
153
+ }
146
154
  processStop(name) {
147
155
  if (this.state?.ntkCmsAPiState?.inProcessingList) {
148
156
  const index = this.state.ntkCmsAPiState.inProcessingList.indexOf(name);