Version: 2.4.7 Update

This commit is contained in:
gh0stkey
2023-09-28 01:23:36 +08:00
parent a69503ca3d
commit e698bb1caa
2 changed files with 19 additions and 21 deletions

View File

@@ -218,7 +218,7 @@ public class Databoard extends JPanel {
tabbedPane.removeAll();
for(Map.Entry<String, List<String>> entry: selectHost.entrySet()){
tabbedPane.addTab(entry.getKey(), new JScrollPane(new HitRuleDataList(entry.getValue())));
tabbedPane.addTab(String.format("%s (%s)", entry.getKey(), entry.getValue().size()), new JScrollPane(new HitRuleDataList(entry.getValue())));
}
textField.setText(hostComboBox.getSelectedItem().toString());
}