Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat: show event type in event property box
Browse files Browse the repository at this point in the history
  • Loading branch information
marionebl committed Sep 10, 2018
1 parent aea46a3 commit 73cf294
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/container/property-list/event-handler-property-view.tsx
Expand Up @@ -145,7 +145,9 @@ export class EventHandlerPropertyView extends React.Component<EventHandlerProper
>
<Components.PropertyBox
headline={patternProperty.getLabel()}
copy={patternProperty.getDescription()}
copy={[patternProperty.getEvent().getType(), patternProperty.getDescription()]
.filter(Boolean)
.join(' - ')}
>
<div
style={{
Expand Down

0 comments on commit 73cf294

Please sign in to comment.