Skip to content

Commit 4792741

Browse files
committed
upgrade apprun to 2.23.10
1 parent cc25274 commit 4792741

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

frameworks/keyed/apprun/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "js-framework-benchmark-apprun-v2.23.8",
2+
"name": "js-framework-benchmark-apprun-v2.23.10",
33
"version": "1.0.0",
44
"description": "AppRun demo",
55
"main": "index.js",
@@ -29,6 +29,6 @@
2929
"webpack-cli": "^3.3.11"
3030
},
3131
"dependencies": {
32-
"apprun": "2.23.9"
32+
"apprun": "2.23.10"
3333
}
3434
}

frameworks/keyed/apprun/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const update = {
5151

5252
const view = (model) => {
5353
const rows = model.data.map((curr) => {
54-
const selected = curr.id == model.selected ? 'danger' : '';
54+
const selected = curr.id == model.selected ? 'danger' : undefined;
5555
const id = curr.id;
5656
return <tr className={selected} id={id} key={id}>
5757
<td className="col-md-1">{id}</td>

frameworks/non-keyed/apprun/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "js-framework-benchmark-apprun-v2.23.8",
2+
"name": "js-framework-benchmark-apprun-v2.23.10",
33
"version": "1.0.0",
44
"description": "AppRun demo",
55
"main": "index.js",
@@ -29,6 +29,6 @@
2929
"webpack-cli": "^3.3.11"
3030
},
3131
"dependencies": {
32-
"apprun": "2.23.9"
32+
"apprun": "2.23.10"
3333
}
3434
}

frameworks/non-keyed/apprun/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const update = {
5151

5252
const view = (model) => {
5353
const rows = model.data.map((curr) => {
54-
const selected = curr.id == model.selected ? 'danger' : '';
54+
const selected = curr.id == model.selected ? 'danger' : undefined;
5555
const id = curr.id;
5656
return <tr className={selected} id={id}>
5757
<td className="col-md-1">{id}</td>

0 commit comments

Comments
 (0)