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 84fb5ef commit 30d73bdCopy full SHA for 30d73bd
src/main/java/com/flowingcode/vaadin/addons/errorwindow/ErrorWindow.java
@@ -20,6 +20,7 @@
20
21
package com.flowingcode.vaadin.addons.errorwindow;
22
23
+import com.vaadin.flow.component.Component;
24
import com.vaadin.flow.component.Html;
25
import com.vaadin.flow.component.button.Button;
26
import com.vaadin.flow.component.dependency.CssImport;
@@ -188,7 +189,7 @@ private VerticalLayout createExceptionTraceLayout() {
188
189
return exceptionTraceLayout;
190
}
191
- protected TextArea createStackTraceArea() {
192
+ protected Component createStackTraceArea() {
193
final TextArea area = new TextArea();
194
area.setWidthFull();
195
area.setHeight("15em");
0 commit comments