In issue comments, put issue participants also in completion list when hitting @ (#12433)
Previous behaviour was only to have completion for project members
This commit is contained in:
		
							parent
							
								
									28a7708d69
								
							
						
					
					
						commit
						e5c5080f26
					
				
					 1 changed files with 9 additions and 5 deletions
				
			
		|  | @ -78,12 +78,16 @@ | |||
| 				EventSourceUpdateTime: {{NotificationSettings.EventSourceUpdateTime}}, | ||||
| 			}, | ||||
|       {{if .RequireTribute}} | ||||
| 			tributeValues: [ | ||||
| 				{{ range .Assignees }} | ||||
| 				{key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', | ||||
| 				name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}, | ||||
| 			tributeValues: Array.from(new Map([ | ||||
| 				{{ range .Participants }} | ||||
| 				['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', | ||||
| 				name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}], | ||||
| 				{{ end }} | ||||
| 			], | ||||
| 				{{ range .Assignees }} | ||||
| 				['{{.Name}}', {key: '{{.Name}} {{.FullName}}', value: '{{.Name}}', | ||||
| 				name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'}], | ||||
| 				{{ end }} | ||||
| 			]).values()), | ||||
| 			{{end}} | ||||
| 		}; | ||||
| 	</script> | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue