@cadenza.io/core 1.11.1 → 1.11.2
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -221,7 +221,7 @@ var SignalBroker = class _SignalBroker {
|
|
|
221
221
|
executed = this.executeListener(signal, context);
|
|
222
222
|
if (!isSubMeta) {
|
|
223
223
|
const parts = signal.slice(0, Math.max(signal.lastIndexOf(":"), signal.lastIndexOf("."))).split(".");
|
|
224
|
-
for (let i = parts.length; i >
|
|
224
|
+
for (let i = parts.length; i > -1; i--) {
|
|
225
225
|
const parent = parts.slice(0, i).join(".");
|
|
226
226
|
executed = executed || this.executeListener(parent + ".*", context);
|
|
227
227
|
}
|