1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00

login location with baseurl

This commit is contained in:
diminator 2015-06-25 15:25:34 +02:00
parent d980ef7949
commit 93c1b2e826

View File

@ -10,6 +10,7 @@ import Form from './ascribe_forms/form';
import Property from './ascribe_forms/property'; import Property from './ascribe_forms/property';
import apiUrls from '../constants/api_urls'; import apiUrls from '../constants/api_urls';
import AppConstants from '../constants/application_constants';
let LoginContainer = React.createClass({ let LoginContainer = React.createClass({
@ -45,7 +46,7 @@ let LoginForm = React.createClass({
Users on Stack Overflow claim this is a bug in chrome and should be fixed in the future. Users on Stack Overflow claim this is a bug in chrome and should be fixed in the future.
Until then, we redirect the HARD way, but reloading the whole page using window.location Until then, we redirect the HARD way, but reloading the whole page using window.location
*/ */
window.location = '/collection'; window.location = AppConstants.baseUrl + '/collection';
}, },
render() { render() {