fix: convert Vec<&String> to Vec<String> for join method compatibility
Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
@@ -310,7 +310,7 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec<MetaPluginInfo>) -> Table {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Get and sort output keys
|
// Get and sort output keys
|
||||||
let mut output_keys: Vec<&String> = info.outputs.keys().collect();
|
let mut output_keys: Vec<String> = info.outputs.keys().map(|k| k.to_string()).collect();
|
||||||
output_keys.sort();
|
output_keys.sort();
|
||||||
let outputs_display = if output_keys.is_empty() {
|
let outputs_display = if output_keys.is_empty() {
|
||||||
"{}".to_string()
|
"{}".to_string()
|
||||||
|
|||||||
Reference in New Issue
Block a user