diff options
Diffstat (limited to 'webui/src')
-rw-r--r-- | webui/src/Event.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webui/src/Event.js b/webui/src/Event.js index 6a1a5bc..e5c8394 100644 --- a/webui/src/Event.js +++ b/webui/src/Event.js @@ -33,6 +33,9 @@ class Event { if(this.event.type === "WebhookAction") return "Webhook"; + if(this.event.type === "DeployEvent") + return "Deploy"; + return this.event.type; } @@ -52,6 +55,9 @@ class Event { return "Incoming request from " + this.event['client-address']; } + if(this.event.type === "DeployEvent") + return this.event.name; + return this.event.type; } |