Skip to content

Commit

Permalink
Merge pull request #14202 from opf/51008-long-text-overflows-in-mobil…
Browse files Browse the repository at this point in the history
…e-storage-primer-views

[51008] Long text overflows in MOBILE storage primer views
  • Loading branch information
HDinger committed Nov 24, 2023
2 parents 2398c44 + 35aa5b6 commit 35f9c0b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -6,7 +6,7 @@
end

grid.with_area(:description, tag: :div, color: :subtle, test_selector: 'storage-automatically-managed-project-folders-description') do
render(Primer::Beta::Truncate.new) { I18n.t('storages.page_titles.managed_project_folders.subtitle_short') }
render(Primer::Beta::Text.new) { I18n.t('storages.page_titles.managed_project_folders.subtitle_short') }
end

if editable_storage?
Expand Down
Expand Up @@ -6,7 +6,7 @@
end

grid.with_area(:description, tag: :div, color: :subtle, test_selector: 'storage-description') do
render(Primer::Beta::Truncate.new) { storage_description }
render(Primer::Beta::Text.new) { storage_description }
end

if editable_storage?
Expand Down
Expand Up @@ -6,7 +6,7 @@
end

grid.with_area(:description, tag: :div, color: :subtle, test_selector: 'storage-openproject-oauth-application-description') do
render(Primer::Beta::Truncate.new) { openproject_oauth_client_description }
render(Primer::Beta::Text.new) { openproject_oauth_client_description }
end

if editable_storage?
Expand Down
Expand Up @@ -10,7 +10,7 @@
end

grid.with_area(:description, tag: :div, color: :subtle, test_selector: 'storage-oauth-client-id-description') do
render(Primer::Beta::Truncate.new) { provider_oauth_client_description }
render(Primer::Beta::Text.new) { provider_oauth_client_description }
end

if editable_storage?
Expand Down

0 comments on commit 35f9c0b

Please sign in to comment.