protected void execute(@NotNull ProgressIndicator progressIndicator) throws InterruptedException {
final DBObject navigationObject = object.getDefaultNavigationObject();
if (navigationObject != null) {
new SimpleLaterInvocator(){
public void execute() {
navigationObject.navigate(true);
}
}.start();
}
}