Skip to content

Commit

Permalink
Merge pull request #403 from Senyoret1/app-name
Browse files Browse the repository at this point in the history
Fix a problem with the app names in the manager
  • Loading branch information
jdknives authored Jun 12, 2020
2 parents 48a25b9 + f8d4794 commit b8b2095
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class NodeService {
// Needed for a change made to the names on the backend.
if (node.apps) {
node.apps.forEach(app => {
app.name = (app as any).app;
app.name = (app as any).name ? (app as any).name : (app as any).app;
app.autostart = (app as any).auto_start;
});
}
Expand Down

0 comments on commit b8b2095

Please sign in to comment.