Skip to content

Commit 79d1940

Browse files
committed
changed some urls with dummy versions in react app
1 parent 04707b0 commit 79d1940

File tree

4 files changed

+11478
-3
lines changed

4 files changed

+11478
-3
lines changed

reactjs/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
GENERATE_SOURCEMAP=false
2-
REACT_APP_APP_BASE_URL="http://www.ryoldash.com/"
3-
REACT_APP_REMOTE_SERVICE_BASE_URL="http://www.ryoldash.com/"
2+
REACT_APP_APP_BASE_URL="http://www.yourwebsite.com/"
3+
REACT_APP_REMOTE_SERVICE_BASE_URL="http://www.yourwebsite.com/"

reactjs/src/components/Header/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { L } from '../../lib/abpUtility';
88
import LanguageSelect from '../LanguageSelect';
99
import { Link } from 'react-router-dom';
1010

11+
import profilePicture from '../../images/user.png';
12+
1113
export interface IHeaderProps {
1214
collapsed?: any;
1315
toggle?: any;
@@ -35,7 +37,7 @@ export class Header extends React.Component<IHeaderProps> {
3537
<LanguageSelect /> {' '}
3638
<Dropdown overlay={userDropdownMenu} trigger={['click']}>
3739
<Badge style={{}} count={3}>
38-
<Avatar style={{}} size={24} alt={'profile'} src="https://sametkabay.com/images/smtkby/smtkby240.png" />
40+
<Avatar style={{height:24, width:24}} shape="circle" alt={'profile'} src={profilePicture} />
3941
</Badge>
4042
</Dropdown>
4143
</Col>

reactjs/src/images/user.png

798 Bytes
Loading

0 commit comments

Comments
 (0)