mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Allow emoji on popup label (#10166)
* allow emoji on popup label * Make emojify work * Remove unnecessary class Co-Authored-By: silverwind <me@silverwind.io> Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
		@@ -20,6 +20,7 @@ function issuePopup(suburl, owner, repo, index, $element) {
 | 
			
		||||
    let labels = '';
 | 
			
		||||
    for (let i = 0; i < issue.labels.length; i++) {
 | 
			
		||||
      const label = issue.labels[i];
 | 
			
		||||
      const labelName = emojify.replace(label.name);
 | 
			
		||||
      const red = parseInt(label.color.substring(0, 2), 16);
 | 
			
		||||
      const green = parseInt(label.color.substring(2, 4), 16);
 | 
			
		||||
      const blue = parseInt(label.color.substring(4, 6), 16);
 | 
			
		||||
@@ -27,7 +28,7 @@ function issuePopup(suburl, owner, repo, index, $element) {
 | 
			
		||||
      if ((red * 0.299 + green * 0.587 + blue * 0.114) > 125) {
 | 
			
		||||
        color = '#000000';
 | 
			
		||||
      }
 | 
			
		||||
      labels += `<div class="ui label" style="color: ${color}; background-color:#${label.color};">${label.name}</div>`;
 | 
			
		||||
      labels += `<div class="ui label" style="color: ${color}; background-color:#${label.color};">${labelName}</div>`;
 | 
			
		||||
    }
 | 
			
		||||
    if (labels.length > 0) {
 | 
			
		||||
      labels = `<p>${labels}</p>`;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user