Skip to content

Commit 10f65e0

Browse files
committed
Bump 2.8.3
1 parent 526c585 commit 10f65e0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.8.2",
3+
"version": "2.8.3",
44
"description": "A JavaScript library that runs systems",
55
"license": "Apache-2.0",
66
"homepage": "https://designfirst.io/systemruntime/",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.8.2",
3+
"version": "2.8.3",
44
"description": "A JavaScript library that runs systems",
55
"homepage": "https://designfirst.io/systemruntime/",
66
"keywords": [

src/log.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ exports.actionInvokeError = function actionInvokeError(
10481048
) {
10491049
if (className !== 'Function') {
10501050
getLogger().error(
1051-
"error when trying to call the method '" +
1051+
"error when running the behavior '" +
10521052
state +
10531053
"' on component '" +
10541054
id +
@@ -1059,7 +1059,7 @@ exports.actionInvokeError = function actionInvokeError(
10591059
);
10601060
} else {
10611061
getLogger().error(
1062-
"error when trying to call the method '" +
1062+
"error when running the behavior '" +
10631063
state +
10641064
"' on component '" +
10651065
id +

src/system/system-runtime.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/workflow.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ function action(component, state, action, params, isEvent) {
393393
if (component && component.error) {
394394
component.error({
395395
message:
396-
"error when trying to call the method '" +
396+
"error when running the behavior '" +
397397
state +
398398
"' on component '" +
399399
component.id() +
@@ -404,7 +404,7 @@ function action(component, state, action, params, isEvent) {
404404
if ($helper.getRuntime()) {
405405
$helper.getRuntime().error({
406406
message:
407-
"error when trying to call the method '" +
407+
"error when running the behavior '" +
408408
state +
409409
"' on component '" +
410410
component.id() +

0 commit comments

Comments
 (0)