Skip to content
Snippets Groups Projects
Unverified Commit 786744d8 authored by Sebastian Castro's avatar Sebastian Castro
Browse files

import: ontology fix editable / non editable label

parent 323c25a8
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@
$row.find('.clear-icon').toggle(newVal != '/')
$row.find('.field-info').removeClass('label-primary label-info label-success')
var text = '', type = '', title = ''
if (coreData.concat(formProperties).map(el => el.id).indexOf(newVal) > -1) {
if (coreData.map(el => el.id).concat(formProperties).indexOf(newVal) > -1) {
text = "Éditable"
type = "info"
title = "Ce champ sera éditable dans le formulaire public"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment