Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

[JBEAP-12293] - Cannot add new credential store with credential reference store field #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,15 @@ public void setSupportExpressions(boolean b) {

public enum VALUE_SEMANTICS {UNDEFINED}

Element getInputElement() {
public Element getInputElement() {
return null;
}

public void focus(){
if(getInputElement() != null)
getInputElement().focus();
}

protected void toggleExpressionInput(Widget target, boolean flag)
{
if(flag)
Expand Down