Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be1c09b

Browse files
set column header to ID if there is no common prefix
1 parent a795dbf commit be1c09b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/TestOverviewTableModel.xtend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class TestOverviewTableModel extends DefaultTableModel {
3737
}
3838

3939
def getTestIdColumnName() {
40-
if (commonPrefix === null) {
40+
if (commonPrefix === null || commonPrefix == "") {
4141
return UtplsqlResources.getString("RUNNER_TEST_ID")
4242
} else {
4343
commonPrefix

0 commit comments

Comments
 (0)