mirror of
				https://github.com/SillyTavern/SillyTavern.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	Fix dropspot highlight not appearing on hover
This commit is contained in:
		@@ -654,7 +654,7 @@ PromptManagerModule.prototype.renderPromptManagerListItems = function () {
 | 
			
		||||
 | 
			
		||||
        const listEntry = this.getPromptListEntry(this.activeCharacter, prompt.identifier);
 | 
			
		||||
        const enabledClass = listEntry.enabled ? '' : `${prefix}prompt_manager_prompt_disabled`;
 | 
			
		||||
        const draggableClass = draggableEnabled ? 'draggable' : '';
 | 
			
		||||
        const draggableClass = draggableEnabled ? 'draggable' : prompt.marker ? 'droppable' : '';
 | 
			
		||||
        const markerClass = prompt.marker ? `${prefix}prompt_manager_marker` : '';
 | 
			
		||||
        const calculatedTokens = prompt.calculated_tokens ? prompt.calculated_tokens : '-';
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user