Files
openproject/app/components/projects/wizard/help_text_component.html.erb
T
2025-11-25 22:06:38 +01:00

12 lines
494 B
Plaintext

<%= component_wrapper do %>
<% if attribute_help_text.present? %>
<%= render Primer::Beta::Text.new(tag: :p) do %>
<%= render Primer::Beta::Octicon.new(icon: :info, color: :muted, mr: 2) %>
<%= attribute_help_text.attribute_field_name %>
<% end %>
<%= render AttributeHelpTexts::ShowComponent.new(attribute_help_text:) %>
<% else %>
<%= render(Primer::Beta::Text.new(tag: :div, color: :muted)) { I18n.t("projects.wizard.no_help_text") } %>
<% end %>
<% end %>