Skip to content

Commit

Permalink
Fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asheshv committed Sep 18, 2024
1 parent 5b435cd commit fe266ab
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,14 @@ export default class FunctionSchema extends BaseUISchema {
(source[source.length - 1] !== 'lanname') ? undefined : (
obj.isLessThan95ORNonSPL(state)
) ? {
provolatile: null,
proisstrict: false,
procost: null,
proleakproof: false,
proparallel: null,
} : (
obj.isLessThan95ORNonSPL(state) ? { proparallel: null } : undefined
)
provolatile: null,
proisstrict: false,
procost: null,
proleakproof: false,
proparallel: null,
} : (
obj.isLessThan95ORNonSPL(state) ? { proparallel: null } : undefined
)
),
},{
id: 'prosecdef', label: gettext('Security of definer?'),
Expand Down

0 comments on commit fe266ab

Please sign in to comment.