Nixon Rodrigues created ATLAS-1823:
--------------------------------------
Summary: UI - Change in base path URL for few api/images to make
it relative from path it is accessed.
Key: ATLAS-1823
URL: https://issues.apache.org/jira/browse/ATLAS-1823
Project: Atlas
Issue Type: Bug
Reporter: Nixon Rodrigues
The currently in Atlas the base path for api and few image are relative to root
of the application, ie it always resolves to http://<host><api>.
Which causing issue when Atlas UI is accessed for Knox Proxy.
Proposing following changes in path to make it relative from path it is
accessed.
{code}
- <img class="initialLoading" src="../img/ring.gif">
+ <img class="initialLoading" src="img/ring.gif">
{code}
{code}
- baseUrl: '/api/atlas',
- baseUrlV2: '/api/atlas/v2',
+ baseUrl: 'api/atlas',
+ baseUrlV2: 'api/atlas/v2',
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)