Skip to content

Commit

Permalink
Bug-Permisos de columna none
Browse files Browse the repository at this point in the history
  • Loading branch information
jortilles committed Nov 29, 2023
1 parent 57a8463 commit 985dd20
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class ColumnPermissionDialogComponent extends EdaDialogAbstract {
permissionFilter = {
users : this.selectedUsers.map(usr => usr._id),
usersName : this.selectedUsers.map(usr => usr.name),
value : this.dynamic ? this.dynamicQuery : this.all ? '(~ => All)' : this.none ? '(x => None)' : this.selectedValues,
value : this.dynamic ? this.dynamicQuery : this.all ? '(~ => All)' : this.none ? ['(x => None)'] : this.selectedValues,
none : this.none ? true : false,
table : this.table.table_name,
column : this.column.column_name,
Expand All @@ -115,7 +115,7 @@ export class ColumnPermissionDialogComponent extends EdaDialogAbstract {
permissionFilter = {
groups : this.selectedRoles.map(usr => usr._id),
groupsName : this.selectedRoles.map(usr => usr.name),
value : this.dynamic ? this.dynamicQuery : this.all ? '(~ => All)' : this.none ? '(x => None)' : this.selectedValues,
value : this.dynamic ? this.dynamicQuery : this.all ? '(~ => All)' : this.none ? ['(x => None)'] : this.selectedValues,
none : this.none ? true : false,
table : this.table.table_name,
column : this.column.column_name,
Expand Down

0 comments on commit 985dd20

Please sign in to comment.