Project

General

Profile

Feature #39806 » 0001-Fix-toggle-for-column-selection.patch

Takashi Kato, 2026-06-14 09:16

View differences:

app/views/queries/_query_form.html.erb
82 82
$(function ($) {
83 83
  $('input[name=display_type]').change(function (e) {
84 84
    if ($("#display_type_list").is(':checked')) {
85
      $('table#list-definition').show();
85
      $('#list-definition').show();
86 86
    } else {
87
      $('table#list-definition').hide();
87
      $('#list-definition').hide();
88 88
    }
89

  
90 89
  })
91 90
});
92 91

  
(10-10/10)