Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jarena3 committed Jun 28, 2022
1 parent 111dc3c commit 6199a51
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"core-js": "^3.6.5",
"external-svg-loader": "^1.4.0",
"jszip": "^3.7.1",
"lancer-data": "^3.0.44",
"lancer-data": "^3.0.45",
"lodash": "^4.17.21",
"material-icons": "^0.3.1",
"promisify-file-reader": "^4.1.0",
Expand Down
1 change: 1 addition & 0 deletions src/classes/components/brew/BrewController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class BrewController {
item => item.Brew && item.Brew.toLowerCase() !== 'core'
)
.map(item => packs.find(p => p.ID === item.Brew))
.filter(p => !!p)
.map(pack => ({
LcpId: pack.ID,
LcpName: pack.Name || 'ERR',
Expand Down
3 changes: 2 additions & 1 deletion src/classes/pilot/components/bond/Bond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ class Bond {
}

public static Deserialize(id: string): Bond {
return store.getters.referenceByID('Bonds', id)
const res = store.getters.referenceByID('Bonds', id)
return res.err ? null : res
}
}

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8338,10 +8338,10 @@ klona@^2.0.4:
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc"
integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==

lancer-data@^3.0.44:
version "3.0.44"
resolved "https://registry.yarnpkg.com/lancer-data/-/lancer-data-3.0.44.tgz#17b36d483dd28d0b9bb5f82789f15b70054417c0"
integrity sha512-VP9SxC2ChKQeigFIMMS9OMOp4bovYyPnN6WEizS3U0gxXa11YlFzHmWDPqog1KI16okBYZxox+nmIlxmEx/KtA==
lancer-data@^3.0.45:
version "3.0.45"
resolved "https://registry.yarnpkg.com/lancer-data/-/lancer-data-3.0.45.tgz#c3d1ec5542bb006ec9d2479d560ac52a190898bf"
integrity sha512-XshbZlzEdqu54WBPt3dfDhcgGRb52BEz0XntjzITbRiY7w3wTgTn962ZqVoTKjYgEhbePrB/ZFG3Ze/2eOUuPA==

launch-editor-middleware@^2.2.1:
version "2.3.0"
Expand Down

0 comments on commit 6199a51

Please sign in to comment.