Sha256: 2e9e73c2d849fc8778fae11e58588741cdba282921e05f109df3245d3407b1a0
Contents?: true
Size: 551 Bytes
Versions: 32
Compression:
Stored size: 551 Bytes
Contents
# frozen_string_literal: true module Koi module Content module Editor class ErrorsComponent < ViewComponent::Base include Katalyst::HtmlAttributes include Turbo::FramesHelper attr_reader :container def initialize(container:) super() @container = container end def id dom_id(container, :errors) end def form_builder Koi::FormBuilder.new(container.model_name.param_key, container, self, {}) end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems