We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c53aef commit d053504Copy full SHA for d053504
client/src/com/mirth/connect/client/ui/browsers/message/MessageBrowser.java
@@ -382,6 +382,9 @@ public void loadChannel(MessageBrowserChannelModel channelModel) {
382
MessageBrowserTableColumnFactory columnFactory = (MessageBrowserTableColumnFactory) messageTreeTable.getColumnFactory();
383
for (int modelIndex = 0; modelIndex < columnList.size(); modelIndex++) {
384
TableColumnExt column = columnFactory.createAndConfigureTableColumn(messageTreeTable.getModel(), modelIndex);
385
+ if (modelIndex >= columnMap.size()) {
386
+ columnFactory.configureCustomColumn(column, metaDataColumns.get(modelIndex - columnMap.size()).getType());
387
+ }
388
messageTreeTable.addColumn(column);
389
}
390
0 commit comments