mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
12 lines
494 B
Plaintext
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 %>
|