Skip to content

Commit

Permalink
refactor(demo): rename LocaleComboBoxDemo to DisplayModeDemo
Browse files Browse the repository at this point in the history
  • Loading branch information
elPeiretti authored and javier-godoy committed Sep 5, 2024
1 parent 6298d5d commit 172fe46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
@PageTitle("Display modes")
@SuppressWarnings("serial")
@Route(value = "demo", layout = LocaleComboBoxDemoView.class)
public class LocaleComboBoxDemo extends Div {
public class DisplayModeDemo extends Div {

public LocaleComboBoxDemo() {
public DisplayModeDemo() {

List<Locale> localeList =
Arrays.stream(Locale.getAvailableLocales()).filter(loc -> !loc.getDisplayName().isBlank())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class LocaleComboBoxDemoView extends TabbedDemo {

public LocaleComboBoxDemoView() {
addDemo(LocaleComboBoxDemo.class);
addDemo(DisplayModeDemo.class);
setSizeFull();
}
}

0 comments on commit 172fe46

Please sign in to comment.