Skip to content

Commit

Permalink
fix(editor): update sample file label format #178
Browse files Browse the repository at this point in the history
Update the label format for the sample file in the ShirePreviewEditor to include parentheses around the file name.
  • Loading branch information
phodal committed Jan 4, 2025
1 parent dd139d2 commit 8c68528
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ open class ShirePreviewEditor(
}
if (javaLanguage != null) {
row {
cell(JBLabel("Sample File For Variable")).align(Align.FILL).resizableColumn()
cell(JBLabel("shire.java")).align(Align.FILL).resizableColumn()
cell(JBLabel("Sample File For Variable"))
cell(JBLabel("(/shire.java)")).align(Align.FILL).resizableColumn()
// add refresh button for select
icon(AllIcons.Actions.Refresh)
button("Refresh", object : AnAction() {
Expand Down

0 comments on commit 8c68528

Please sign in to comment.