Skip to content

Commit

Permalink
ICDDB-120: fixed min width of OpenApi frames
Browse files Browse the repository at this point in the history
  • Loading branch information
abrighton committed Feb 27, 2024
1 parent cdfeeb5 commit bb19c29
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,10 @@ case class Components(mainContent: MainContent, listener: ComponentListener) {
a(id := idStr, name := idStr, onclick := openInNewTab, title := s"Open ${m.name} API in new tab.")(m.name)
)
),
td(m.description),
td(
width := "90%",
m.description
),
if (clientApi) td(s.requiredBy.map(_.component).distinct.map(makeLinkForComponent)) else span
),
row
Expand Down

0 comments on commit bb19c29

Please sign in to comment.