mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fix long filename overflowing, closes #1052
This commit is contained in:
		| @@ -5,17 +5,23 @@ import TypeWidget from "./type_widget.js"; | ||||
|  | ||||
| const TPL = ` | ||||
| <div class="note-detail-file note-detail-printable"> | ||||
|     <style> | ||||
|         .file-table td { | ||||
|             overflow-wrap: anywhere; | ||||
|         } | ||||
|     </style> | ||||
|  | ||||
|     <table class="file-table"> | ||||
|         <tr> | ||||
|             <th nowrap>Note ID:</th> | ||||
|             <th>Note ID:</th> | ||||
|             <td class="file-note-id"></td> | ||||
|             <th nowrap>Original file name:</th> | ||||
|             <th>Original file name:</th> | ||||
|             <td class="file-filename"></td> | ||||
|         </tr> | ||||
|         <tr> | ||||
|             <th nowrap>File type:</th> | ||||
|             <th>File type:</th> | ||||
|             <td class="file-filetype"></td> | ||||
|             <th nowrap>File size:</th> | ||||
|             <th>File size:</th> | ||||
|             <td class="file-filesize"></td> | ||||
|         </tr> | ||||
|     </table> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user