mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 02:04:11 +01:00 
			
		
		
		
	Fix broken image when editing comment with non-image attachments (#32319)
Fix #32316
This commit is contained in:
		
							parent
							
								
									2abdbe88b5
								
							
						
					
					
						commit
						7cf611d197
					
				@ -128,10 +128,12 @@ export async function initDropzone(dropzoneEl) {
 | 
			
		||||
      fileUuidDict = {};
 | 
			
		||||
      for (const attachment of respData) {
 | 
			
		||||
        const file = {name: attachment.name, uuid: attachment.uuid, size: attachment.size};
 | 
			
		||||
        const imgSrc = `${attachmentBaseLinkUrl}/${file.uuid}`;
 | 
			
		||||
        dzInst.emit('addedfile', file);
 | 
			
		||||
        dzInst.emit('thumbnail', file, imgSrc);
 | 
			
		||||
        dzInst.emit('complete', file);
 | 
			
		||||
        if (isImageFile(file.name)) {
 | 
			
		||||
          const imgSrc = `${attachmentBaseLinkUrl}/${file.uuid}`;
 | 
			
		||||
          dzInst.emit('thumbnail', file, imgSrc);
 | 
			
		||||
        }
 | 
			
		||||
        addCopyLink(file); // it is from server response, so no "type"
 | 
			
		||||
        fileUuidDict[file.uuid] = {submitted: true};
 | 
			
		||||
        const input = createElementFromAttrs('input', {name: 'files', type: 'hidden', id: `dropzone-file-${file.uuid}`, value: file.uuid});
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user