* [bug] fix approval link bug.
This commit is contained in:
@@ -26,7 +26,11 @@ window.onRenderCell = function(result, {row, col})
|
||||
}
|
||||
if(result && col.name == 'title')
|
||||
{
|
||||
if(!noFlowAuditModules.includes(row.data.module)) result[0].props['data-app'] = row.data.app;
|
||||
if(!noFlowAuditModules.includes(row.data.module))
|
||||
{
|
||||
if(row.data.app == 'scrum' || row.data.app == 'waterfall') row.data.app = 'project';
|
||||
result[0].props['data-app'] = row.data.app;
|
||||
}
|
||||
if(row.data.module == 'review' || !noFlowAuditModules.includes(row.data.module)) result[0].props['data-toggle'] = '';
|
||||
if(!viewPrivs[row.data.module])
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user