+
setSearchQuery(e.target.value)}
aria-label={localize('com_ui_memories_filter')}
+ className="peer"
/>
+
{/* Memory Usage and Toggle Display */}
{(memData?.tokenLimit || hasOptOutAccess) && (
diff --git a/client/src/locales/en/translation.json b/client/src/locales/en/translation.json
index a82e931072..42415638d1 100644
--- a/client/src/locales/en/translation.json
+++ b/client/src/locales/en/translation.json
@@ -797,6 +797,7 @@
"com_ui_context": "Context",
"com_ui_continue": "Continue",
"com_ui_continue_oauth": "Continue with OAuth",
+ "com_ui_control_bar": "Control bar",
"com_ui_controls": "Controls",
"com_ui_convo_delete_error": "Failed to delete conversation",
"com_ui_convo_delete_success": "Conversation successfully deleted",
@@ -883,6 +884,7 @@
"com_ui_edit_editing_image": "Editing image",
"com_ui_edit_mcp_server": "Edit MCP Server",
"com_ui_edit_memory": "Edit Memory",
+ "com_ui_edit_prompt_page": "Edit Prompt Page",
"com_ui_editable_message": "Editable Message",
"com_ui_editor_instructions": "Drag the image to reposition • Use zoom slider or buttons to adjust size",
"com_ui_empty_category": "-",
@@ -1241,6 +1243,7 @@
"com_ui_temporary": "Temporary Chat",
"com_ui_terms_and_conditions": "Terms and Conditions",
"com_ui_terms_of_service": "Terms of service",
+ "com_ui_opens_new_tab": "(opens in new tab)",
"com_ui_thinking": "Thinking...",
"com_ui_thoughts": "Thoughts",
"com_ui_token": "token",
diff --git a/packages/client/src/components/Toast.tsx b/packages/client/src/components/Toast.tsx
index 5b8311b077..0b815d1de7 100644
--- a/packages/client/src/components/Toast.tsx
+++ b/packages/client/src/components/Toast.tsx
@@ -7,7 +7,7 @@ export function Toast() {
const severityClassName = {
[NotificationSeverity.INFO]: 'border-gray-500 bg-gray-500',
[NotificationSeverity.SUCCESS]: 'border-green-500 bg-green-500',
- [NotificationSeverity.WARNING]: 'border-orange-500 bg-orange-500',
+ [NotificationSeverity.WARNING]: 'border-orange-600 bg-orange-600',
[NotificationSeverity.ERROR]: 'border-red-500 bg-red-500',
};