|
@@ -137,7 +137,11 @@ App.QuickViewLinks = Em.View.extend({
|
|
|
var protocol = self.setProtocol(item.get('service_id'), self.get('configProperties'), self.ambariProperties());
|
|
|
if (item.get('template')) {
|
|
|
var port = item.get('http_config') && self.setPort(item, protocol);
|
|
|
- item.set('url', item.get('template').fmt(protocol, hosts[0], port));
|
|
|
+ if (item.get('service_id') == 'FALCON') {
|
|
|
+ item.set('url', item.get('template').fmt(protocol, hosts[0], port, App.router.get('loginName')));
|
|
|
+ } else {
|
|
|
+ item.set('url', item.get('template').fmt(protocol, hosts[0], port));
|
|
|
+ }
|
|
|
}
|
|
|
return item;
|
|
|
});
|