From 7c2a3b46126b6b1042aeb4f095bb280ed32736dd Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Mon, 15 Apr 2024 02:12:39 -0400 Subject: [PATCH] Portal shows up as 'app' --- src/definitions.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/definitions.js b/src/definitions.js index 1bb0c7f3..a38a3609 100644 --- a/src/definitions.js +++ b/src/definitions.js @@ -55,7 +55,9 @@ export class InitProcess extends Process { } } -export class PortalProcess extends Process {}; +export class PortalProcess extends Process { + _construct () { this.type_ = 'app' } +}; export class PseudoProcess extends Process { _construct () { this.type_ = 'ui' } };