jameshuynh/formnestic

View on GitHub
lib/formnestic/inputs/base/labelling.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Formnestic
  module Inputs
    module Base
      module Labelling
        def render_label?
          if builder.options[:display_type] == 'table'
            false
          else
            formtastic_render_label?
          end
        end
      end
    end
  end
end