-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Conversation
@@ -38,7 +38,14 @@ export default class Summary extends Component { | |||
return null; | |||
} | |||
|
|||
const url = `/app/${app.builtin ? 'global' : 'local'}/${app.url || app.id}`; | |||
let type = 'builtin'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why set it here if it will only become set to something else next?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Erk. Actually missing the built-in type determination, this and next comment. Silly me, only tested GAVcoin, half-assed job - this is a bug. Good catch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed. Apps in installed in .pariyt/dapps
, builtins & network apps now work as expected.
type = 'network'; | ||
} else { | ||
type = 'local'; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let type = app.network ? 'network' : 'local';
?
GAVcoin available on Morden only (live deployment to take place once app ok)