Skip to content

line排序不对 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
gamer2456 opened this issue May 9, 2025 · 1 comment
Open

line排序不对 #24

gamer2456 opened this issue May 9, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@gamer2456
Copy link

Image

参考

    private void updateTableData(List<Object[]> issues) {
        tableModel.setRowCount(0);
        for (Object[] row : issues) {
            // 确保第二列是Integer类型(关键!)
            if (row.length > 1 && row[1] instanceof String) { // 防御性检查
                row[1] = Integer.parseInt((String) row[1]);
            }
            tableModel.addRow(row);
        }
    }
@springkill
Copy link
Member

感谢提交代码,后续跟新修复

@springkill springkill added the bug Something isn't working label Jun 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants