From 0576b027c0b52afe95265767c39978b183ad2ecf Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Tue, 21 Oct 2025 02:23:42 +0300 Subject: [PATCH] Fix to use proper detail box [no-build] --- software/software-lib.pl | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/software/software-lib.pl b/software/software-lib.pl index a0e2b2699..e3a5d2955 100755 --- a/software/software-lib.pl +++ b/software/software-lib.pl @@ -198,10 +198,13 @@ if (@deps) { $dtable .= &ui_columns_row(\@row); } $dtable .= &ui_columns_end(); - print &ui_hidden_table_start($text{'edit_deps'}, "width=100%", 2, - "deps", 0); - print &ui_table_row(undef, $dtable, 2); - print &ui_hidden_table_end(); + + # Print proper details box + print &ui_details({ + title => $text{edit_deps}, + class => 'default default-lg', + content => $dtable, + html => 1 }); } return @pinfo;