Skip to content

Commit 8f22a32

Browse files
committed
fix: add missing uses annotation
1 parent 6e75be0 commit 8f22a32

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/java/com/flowingcode/addons/applayout/SampleView.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919
*/
2020
package com.flowingcode.addons.applayout;
2121

22+
import com.vaadin.flow.component.dependency.Uses;
2223
import com.vaadin.flow.component.html.Div;
2324
import com.vaadin.flow.component.html.Span;
2425
import com.vaadin.flow.router.Route;
2526
import org.junit.Ignore;
2627

2728
@SuppressWarnings("serial")
2829
@Route(value = "view", layout = CustomAppLayout.class)
30+
@Uses(AppLayout.class)
2931
@Ignore
3032
public class SampleView extends Div {
3133

0 commit comments

Comments
 (0)