Skip to content

Commit 9701ba6

Browse files
authored
Merge pull request #941 from amatsuda/fa-
fa- => bi- icon transitions still remained
2 parents 227d168 + b7ecb9a commit 9701ba6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/decorators/staff/program_session_decorator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ def state_label(large: false, state: nil)
1313

1414
def confirmation_notes_link
1515
return '' unless object.confirmation_notes?
16-
id = h.dom_id(object, 'notes')
16+
1717
h.link_to h.event_staff_program_session_path(object.event, object) do
18-
h.content_tag(:i, '', class: 'fa fa-file')
18+
h.content_tag(:i, '', class: 'bi bi-file-text')
1919
end
2020
end
2121

app/helpers/website_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def legend_with_docs(title)
1919

2020
def link_to_docs(anchor)
2121
link_to(DOCS_PAGE + "##{anchor}", target: "_blank") do
22-
content_tag("i", nil, class: "fa fa-fw fa-question-circle")
22+
content_tag('i', nil, class: 'bi bi-question-circle')
2323
end
2424
end
2525
end

config/initializers/simple_form/popover_icon_component.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def icon
2121
return if popover_content.blank?
2222
template.capture do
2323
template.content_tag(:a, class:'btn btn-icon hint-btn popover-trigger', data: { target: popover_selector }) do
24-
template.content_tag(:i, '', class: 'fa fa-fw fa-question-circle')
24+
template.content_tag(:i, '', class: 'bi bi-question-circle')
2525
end
2626
end.html_safe
2727
end

0 commit comments

Comments
 (0)