Skip to content
Snippets Groups Projects
Commit c97b553b authored by srosse's avatar srosse
Browse files

OO-3097: if the row is null, choose the deleted css class

parent ff64c012
No related branches found
No related tags found
No related merge requests found
......@@ -376,7 +376,7 @@ public class AuthorListController extends FormBasicController implements Activat
@Override
public String getRowCssClass(FlexiTableRendererType type, int pos) {
AuthoringEntryRow row = model.getObject(pos);
if(row.getAccess() == 0) {
if(row == null || row.getAccess() == 0) {
return "o_entry_deleted";
}
if(row.getRepositoryEntryStatus().isClosed()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment