From f9c4b709ad593d933fae90caadc0d421fc5a6610 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Mon, 8 Sep 2025 17:57:37 -0300 Subject: [PATCH] fix: Display tables with box characters in terminal --- src/modes/status.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index 2cbefac..c392adb 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -10,7 +10,7 @@ use crate::common::status::StatusInfo; use serde_json; use serde_yaml; use prettytable::{Attr, Cell, Row, Table}; -use prettytable::format::consts::{FORMAT_NO_BORDER_LINE_SEPARATOR}; +use prettytable::format::consts::{FORMAT_BOX_CHARS, FORMAT_NO_BORDER_LINE_SEPARATOR}; use crate::common::status::PathInfo; use crate::meta_plugin::MetaPluginType; @@ -102,7 +102,7 @@ fn build_meta_plugins_configured_table(status_info: &StatusInfo) -> Option