Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
anis
anis-admin
Commits
93527aea
Commit
93527aea
authored
Jul 01, 2020
by
François Agneray
Browse files
Merge branch 'develop' into 'master'
Fixed bug: dataset form component (config field) See merge request
!22
parents
25d91dc6
c9c6daff
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app/metamodel/components/dataset/form-dataset.component.ts
View file @
93527aea
...
...
@@ -26,7 +26,7 @@ export class FormDatasetComponent {
}
getConfigConeSearchEnabled
()
{
if
(
this
.
model
.
config
.
cone_search
)
{
if
(
this
.
model
.
config
&&
this
.
model
.
config
.
cone_search
)
{
return
this
.
model
.
config
.
cone_search
.
enabled
;
}
else
{
return
false
;
...
...
@@ -34,7 +34,7 @@ export class FormDatasetComponent {
}
getConfigColumnRa
()
{
if
(
this
.
model
.
config
.
cone_search
)
{
if
(
this
.
model
.
config
&&
this
.
model
.
config
.
cone_search
)
{
return
this
.
model
.
config
.
cone_search
.
column_ra
;
}
else
{
return
0
;
...
...
@@ -42,7 +42,7 @@ export class FormDatasetComponent {
}
getConfigColumnDec
()
{
if
(
this
.
model
.
config
.
cone_search
)
{
if
(
this
.
model
.
config
&&
this
.
model
.
config
.
cone_search
)
{
return
this
.
model
.
config
.
cone_search
.
column_dec
;
}
else
{
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment