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
cd3e9f96
Commit
cd3e9f96
authored
1 year ago
by
AUBRY JEAN-PASCAL
Browse files
Options
Downloads
Patches
Plain Diff
fix: display the right bottom slope value when a parametric section is generated
Refs
#654
parent
a43d6db3
No related branches found
No related tags found
2 merge requests
!252
release: version 4.18.0
,
!250
Resolve "Courbe de remous - génération section paramétrée : la pente de fond n'est pas copiée"
Pipeline
#162887
passed
1 year ago
Stage: install
Stage: build
Stage: clean-stale-branches
Stage: deploy-dev
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/services/formulaire.service.ts
+5
-0
5 additions, 0 deletions
src/app/services/formulaire.service.ts
with
5 additions
and
0 deletions
src/app/services/formulaire.service.ts
+
5
−
0
View file @
cd3e9f96
/* eslint-disable @typescript-eslint/member-ordering */
import
{
Injectable
}
from
"
@angular/core
"
;
import
{
decode
}
from
"
he
"
;
...
...
@@ -872,8 +873,12 @@ export class FormulaireService extends Observable {
if
(
this
.
currentForm
.
currentNub
instanceof
SectionNub
)
{
const
sn
:
SectionNub
=
this
.
currentForm
.
currentNub
;
if
(
sn
instanceof
RegimeUniforme
||
sn
instanceof
CourbeRemous
)
{
// change _If visibility to copy section
sn
.
section
.
prms
.
If
.
visible
=
true
;
// copy section
const
serialisedSection
=
sn
.
section
.
serialise
();
// Reinitialize _If visibility
sn
.
section
.
prms
.
If
.
visible
=
false
;
const
sectionCopy
:
acSection
=
Session
.
getInstance
().
unserialiseSingleNub
(
serialisedSection
,
false
).
nub
as
acSection
;
if
(
Y
!==
undefined
)
{
sectionCopy
.
prms
.
Y
.
singleValue
=
Y
;
...
...
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