When adding anything after this sign (#), the string won’t be stored in the model after i revisit the node, like shown in the picture. Code is below:

After revisiting the node

@Input(id = INPUT_COMMAND_ID)
public void onChangeInputCommand(InputEvent event)
{
if(event.getEventType() == InputEvent.EventType.ON_CHANGE)
{
this.model.set("COMMAND",this.inputCommand.getText());
}
}
@Override
public void openView() {
this.inCommand.setText(model.get("COMMAND",""));
}