Commit c6585220 authored by Chris Baumbauer's avatar Chris Baumbauer

Resolve bug with knative hostname being overwritten by status updates

parent e5c408e4
......@@ -102,9 +102,8 @@ export default class ClusterStore {
? `jupyter.${this.state.applications.ingress.externalIp}.nip.io`
: '');
} else if (appId === KNATIVE) {
this.state.applications.knative.hostname = serverAppEntry.hostname
? serverAppEntry.hostname
: null;
this.state.applications.knative.hostname = serverAppEntry.hostname ||
this.state.applications.knative.hostname;
}
});
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment