Skip to content

Commit

Permalink
Auto-generated commit [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
JinkiJung committed Mar 5, 2024
1 parent 95aa3e2 commit 7528e84
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 81 deletions.
6 changes: 2 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14129,7 +14129,7 @@ class EditableFormComponent {
this.filterUnselected = (formValue, menuWithOptions) => {
const unfiltered = Object.assign({}, formValue);
Object.keys(unfiltered).forEach(field => {
if (menuWithOptions.filter(e => e[0] === field).length && (!unfiltered[field] || unfiltered[field].length === 0)) {
if (menuWithOptions.filter(e => e[0] === field).length && (unfiltered[field] == null || unfiltered[field].length === 0)) {
delete unfiltered[field];
}
});
Expand Down Expand Up @@ -16925,7 +16925,6 @@ const ColumnForResource = {
title: 'Access type',
type: 'string',
description: 'OpenID Connect access type',
required: true,
options: [{
title: 'public',
value: 'public',
Expand Down Expand Up @@ -16955,8 +16954,7 @@ const ColumnForResource = {
type: 'string',
description: 'OpenID Connect client redirect URI',
visibleFrom: ['detail'],
notShowOnEdit: true,
required: true
notShowOnEdit: true
},
vessel: {
title: 'Vessel',
Expand Down
2 changes: 1 addition & 1 deletion main.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 7528e84

Please sign in to comment.