In issue comments, put issue participants also in completion list when hitting @ (#12433)

Previous behaviour was only to have completion for project members
tokarchuk/v1.17
Andreas Shimokawa 4 years ago committed by GitHub
parent 28a7708d69
commit e5c5080f26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      templates/base/head.tmpl

@ -78,12 +78,16 @@
EventSourceUpdateTime: {{NotificationSettings.EventSourceUpdateTime}}, EventSourceUpdateTime: {{NotificationSettings.EventSourceUpdateTime}},
}, },
{{if .RequireTribute}} {{if .RequireTribute}}
tributeValues: [ tributeValues: Array.from(new Map([
{{ range .Participants }}
['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}',
name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}],
{{ end }}
{{ range .Assignees }} {{ range .Assignees }}
{key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', ['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}',
name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}, name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}],
{{ end }} {{ end }}
], ]).values()),
{{end}} {{end}}
}; };
</script> </script>

Loading…
Cancel
Save