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

Remove dot in import mapping

parent 406b059b
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,12 @@
<script>
jQuery(document).ready(function() {
$('.property-selector').change(function() {
console.log("input change new val", $(this).val());
var new_val = $(this).val().replace('.', '_');
$(this).val(new_val);
});
// on arrow click, use the original name
$('.arrow-icon').click(function() {
$(this).parent().parent().find('.property-selector:not(.select2-container)').val($(this).parent().siblings('.original').text()).trigger('change');
......
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