All checks were successful
		
		
	
	Release Creation / build (release) Successful in 1m40s
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			736 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			736 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import FTLNomadItemSheet from "./base-item-sheet.mjs"
 | |
| 
 | |
| export default class FTLNomadCreatureTraitSheet extends FTLNomadItemSheet {
 | |
|   /** @override */
 | |
|   static DEFAULT_OPTIONS = {
 | |
|     classes: ["creature-trait"],
 | |
|     position: {
 | |
|       width: 600,
 | |
|     },
 | |
|     window: {
 | |
|       contentClasses: ["creature-trait-content"],
 | |
|     },
 | |
|   }
 | |
| 
 | |
|   /** @override */
 | |
|   static PARTS = {
 | |
|     main: {
 | |
|       template: "systems/fvtt-ftl-nomad/templates/creature-trait.hbs",
 | |
|     },
 | |
|   }
 | |
| 
 | |
|   /** @override */
 | |
|   async _prepareContext() {
 | |
|     const context = await super._prepareContext()
 | |
|     context.enrichedDescription = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.document.system.description, { async: true })
 | |
|     return context
 | |
|   }
 | |
| }
 |