-
Notifications
You must be signed in to change notification settings - Fork 0
feat: initial implementation #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
src/main/java/com/flowingcode/vaadin/addons/localecombobox/LocaleComboBox.java
Show resolved
Hide resolved
|
||
private LitRenderer<Locale> getLocaleRenderer() { | ||
return LitRenderer | ||
.<Locale>of("<vaadin-horizontal-layout class=\"" + ITEM_LAYOUT_CLASS_NAME + "\">" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the minimum Java version is 17, you can use multiline text blocks, which don't require escaping "
:
of("""
"a" "b"
""");
Also note that some updates have been done to AddonsStarter 24 since you've created this repo, so you might need to do some updates:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requested changes per #1 (comment) and #1 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.