Skip to content

Commit

Permalink
correct type of parent to CreateComponentLinkNode
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Dietisheim <[email protected]>
  • Loading branch information
adietish committed Nov 24, 2023
1 parent ca2ca99 commit f3d41b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ intellij {
'com.intellij.css',
'yaml',
'com.redhat.devtools.intellij.telemetry:1.0.0.44',
'com.redhat.devtools.intellij.kubernetes:1.2.0.271'
'com.redhat.devtools.intellij.kubernetes:1.2.1.277'
]
updateSinceUntilBuild = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import com.redhat.devtools.intellij.common.tree.LinkElement;
import org.jboss.tools.intellij.openshift.actions.component.CreateComponentAction;

public class CreateComponentLinkNode extends MessageNode<BaseNode<?>> implements LinkElement {
protected CreateComponentLinkNode(ApplicationsRootNode root, BaseNode<?> parent) {
public class CreateComponentLinkNode extends MessageNode<NamespaceNode> implements LinkElement {
protected CreateComponentLinkNode(ApplicationsRootNode root, NamespaceNode parent) {
super(root, parent, "<a>No deployments, click here to create one.</a>");
}

Expand Down

0 comments on commit f3d41b1

Please sign in to comment.