mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
Compare commits
2 Commits
436a50cb45
...
dedd2ddbba
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dedd2ddbba | ||
|
|
f86ecede9b |
@@ -322,7 +322,7 @@ export default class AvailableModulesMenu extends TranslatedComponent {
|
||||
for (let i = 0; i < sortedModules.length; i++) {
|
||||
let m = sortedModules[i];
|
||||
// If m.grp is mh or mm, or m.symbol contains 'Missing' skip it
|
||||
if (m.grp == 'mh' || m.grp == 'mm' || m.symbol.includes("Missing")) {
|
||||
if (m.grp == 'mh' || m.grp == 'mm' || (typeof(m.symbol) !== 'undefined' && m.symbol.includes("Missing"))) {
|
||||
// If this is a missing module, skip it
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user