Skip to content

Commit

Permalink
MID-6271 direct/indirect assignment table css fix, child cases table …
Browse files Browse the repository at this point in the history
…as well
  • Loading branch information
1azyman committed May 16, 2022
1 parent 18ec821 commit 8c14661
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void populateItem(Item<ICellPopulator<PrismContainerValueWrapper<Assignme

@Override
public String getCssClass() {
return "col-md-1";
return "mp-w-md-1";
}
});
columns.add(new PrismPropertyWrapperColumn<AssignmentType, String>(getContainerModel(), AssignmentType.F_DESCRIPTION, ColumnType.STRING, getPageBase()){
Expand All @@ -150,7 +150,7 @@ public void populateItem(Item<ICellPopulator<PrismContainerValueWrapper<Assignme

@Override
public String getCssClass() {
return "col-md-1";
return "mp-w-md-1";
}
});
return columns;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected List<IColumn<SelectableBean<CaseType>, String>> createDefaultColumns()
column = new PropertyColumn<SelectableBeanImpl<CaseType>, String>(createStringResource("pageCases.table.state"), CaseType.F_STATE.getLocalPart(), "value.state"){
@Override
public String getCssClass() {
return "col-sm-2 col-md-1";
return "mp-w-sm-2 mp-w-md-1";
}
};
columns.add(column);
Expand Down

0 comments on commit 8c14661

Please sign in to comment.