Skip to content

Commit 9c0f6c8

Browse files
author
Joe Wegner
committed
Code review error found: Brought the <br/> back
1 parent 7e0b553 commit 9c0f6c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCellJPanel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ private String setButtonOrLink(JButton button, String desc, String label, String
238238
}
239239
else {
240240
// if not accessible IDE, keep link the same EXCEPT that now the link text is translated!
241-
retString += format("<a href=\"{0}\">{1}</a>", url, label);
241+
retString += format("<a href=\"{0}\">{1}</a><br/>", url, label);
242242
}
243243

244244
return retString;

app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCellJPanel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private String setButtonOrLink(JButton button, String desc, String label, String
178178
}
179179
else {
180180
// if not accessible IDE, keep link the same EXCEPT that now the link text is translated!
181-
retString += " " + format("<a href=\"{0}\">{1}</a>", url, label);
181+
retString += " " + format("<a href=\"{0}\">{1}</a><br/>", url, label);
182182
}
183183

184184
return retString;

0 commit comments

Comments
 (0)