Skip to content

Commit

Permalink
Fix dashboard number format (kiegroup#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianonicolai authored and mswiderski committed Jul 6, 2016
1 parent 8e33b87 commit f9d623f
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.dashbuilder.dataset.def.DataSetDef;
import org.dashbuilder.dataset.def.DataSetDefFactory;
import org.dashbuilder.dataset.def.DataSetDefRegistry;
import org.jbpm.console.ng.bd.model.ProcessInstanceDataSetConstants;
import org.jbpm.console.ng.bd.integration.KieServerDataSetProvider;
import org.kie.server.api.KieServerConstants;
import org.slf4j.Logger;
Expand Down Expand Up @@ -60,8 +59,8 @@ protected void registerDataSetDefinitions() {
"log.externalId " +
"from " +
"ProcessInstanceLog log", false)
.number(ProcessInstanceDataSetConstants.COLUMN_PROCESS_INSTANCE_ID)
.label(ProcessInstanceDataSetConstants.COLUMN_PROCESS_ID)
.number(COLUMN_PROCESS_INSTANCE_ID)
.label(COLUMN_PROCESS_ID)
.date(COLUMN_PROCESS_START_DATE)
.date(COLUMN_PROCESS_END_DATE)
.number(COLUMN_PROCESS_STATUS)
Expand Down
Loading

0 comments on commit f9d623f

Please sign in to comment.