We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87e5c09 commit 744c351Copy full SHA for 744c351
src/main/java/com/flowingcode/vaadin/addons/demo/TabbedDemo.java
@@ -103,7 +103,7 @@ public void addDemo(Component demo) {
103
if (sourceCodeUrl.equals(DemoSource.GITHUB_SOURCE)) {
104
sourceCodeUrl = Optional.ofNullable(this.getClass().getAnnotation(GithubLink.class))
105
.map(githubLink -> githubLink.value() + "/blob/master/src/test/java/"
106
- + demo.getClass().getName().replace('.', '/'))
+ + demo.getClass().getName().replace('.', '/') + ".java")
107
.orElse(null);
108
}
109
0 commit comments