Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Cassiopée
nghyd
Commits
50f4b892
Commit
50f4b892
authored
6 years ago
by
francois.grand
Browse files
Options
Downloads
Patches
Plain Diff
#77
correction d'un bug de calcul de validité (doit dépendre uniquement des éléments affichés)
parent
5950449c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!15
Resolve "faire les modifications nécessaires prendre en compte le ticket cassiopee/jalhyd#46 (Gestion de la session dans la lib)"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/formulaire/definition/form-definition.ts
+2
-1
2 additions, 1 deletion
src/app/formulaire/definition/form-definition.ts
with
2 additions
and
1 deletion
src/app/formulaire/definition/form-definition.ts
+
2
−
1
View file @
50f4b892
...
...
@@ -301,7 +301,8 @@ export abstract class FormulaireDefinition extends FormulaireNode {
public
get
isValid
():
boolean
{
let
res
:
boolean
=
true
;
for
(
let
fs
of
this
.
allFieldsets
)
res
=
res
&&
fs
.
isValid
;
if
(
fs
.
isDisplayed
)
res
=
res
&&
fs
.
isValid
;
return
res
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment