Skip to content

Commit

Permalink
argoproj#46 Fix types issue. Added email next to user name - this is …
Browse files Browse the repository at this point in the history
…required if we have two recipients with the same name and surname.
  • Loading branch information
wokeGit committed Oct 10, 2017
1 parent 130ac67 commit 61efb9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<input type="checkbox" name="options" value="{{ user.email }}" [(ngModel)]="user.checked"><span><i class="fa fa-check"></i></span>
</div>
<span>
<i class="ax-icon-user"></i> {{ user.name }}
<i class="ax-icon-user"></i> {{ user.name }} <small>{{ user.email }}</small>
</span>
</li>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,23 @@ export class NotificationCreationPanelComponent implements OnInit {
messages: {
name: 'Event Type',
},
selectedItems: [],
isVisible: false,
isStaticList: true,
isDisplayedInline: true
};

private eventSeverity: FilterMultiSelect = {
items: [],
messages: {
name: 'Event Severity',
},
selectedItems: [],
isVisible: false,
isStaticList: true,
isDisplayedInline: true
};

private isNotificationCriteriaPanelVisible: boolean = false;

constructor(private notificationService: NotificationService,
Expand Down

0 comments on commit 61efb9b

Please sign in to comment.