Farewell system icon

7c879a3abc95eeec9572158389f342a7cd36b325

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -2Ignore whitespace
public/scripts/PromptManager.js+1 -2
@@ -1550,11 +1550,10 @@ class PromptManager {
15501550 const isInjectionPrompt = prompt.injection_position === INJECTION_POSITION.ABSOLUTE;
15511551 const isOverriddenPrompt = Array.isArray(this.overriddenPrompts) && this.overriddenPrompts.includes(prompt.identifier);
15521552 const importantClass = isImportantPrompt ? `${prefix}prompt_manager_important` : '';
15531553 const iconLookup = prompt.role === 'system' && (prompt.marker || prompt.system_prompt) ? '' : prompt.role;
15541554
15551555 //add role icons to the right of prompt name
15561556 const promptRoles = {
1557- system: { roleIcon: 'fa-cog', roleTitle: 'Prompt will be sent as System' },
15581557 assistant: { roleIcon: 'fa-robot', roleTitle: 'Prompt will be sent as Assistant' },
15591558 user: { roleIcon: 'fa-user', roleTitle: 'Prompt will be sent as User' },
15601559 };