Skip to content

Commit

Permalink
RANGER-4584: UI fix in rendering tag-based policy for EXPIRES_ON
Browse files Browse the repository at this point in the history
Signed-off-by: Madhan Neethiraj <[email protected]>
  • Loading branch information
himanshumaurya09876 authored and mneethiraj committed Mar 13, 2024
1 parent 59f840b commit d8956c1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ define(function(require) {
_.each(this.model.get('accesses'), function(p){
if(p.isAllowed){
var access = _.find(that.accessTypes,function(obj){if(obj.name == p.type) return obj});
this.permsIds.push(access.name);
if(access !== undefined){
this.permsIds.push(access.name);
}
}

}, this);
Expand Down

0 comments on commit d8956c1

Please sign in to comment.