Skip to content

Commit be1c09b

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)