Skip to content

Commit

Permalink
feat(chat-demo): updated profile picture url to relative
Browse files Browse the repository at this point in the history
  • Loading branch information
Strider2342 committed Nov 20, 2024
1 parent 2679e0c commit aaa71fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class AppComponent {
supportAgent: User = {
id: "d16d1a4c-5c67-4e20-b70e-2991c22747c3",
name: "Support Agent",
avatarUrl: "https://raw.githubusercontent.com/DevExpress/DevExtreme/refs/heads/24_2/apps/demos/images/petersmith.png",
avatarUrl: "../../../../images/petersmith.png",
};

messages: Message[] = [
Expand Down
2 changes: 1 addition & 1 deletion apps/demos/Demos/Chat/Overview/React/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function App() {
const supportAgent: ChatTypes.User = {
id: "d16d1a4c-5c67-4e20-b7v0e-2991c22747c3",
name: "Support Agent",
avatarUrl: "https://raw.githubusercontent.com/DevExpress/DevExtreme/refs/heads/24_2/apps/demos/images/petersmith.png",
avatarUrl: "../../../../images/petersmith.png",
};

const messages: ChatTypes.Message[] = [
Expand Down
2 changes: 1 addition & 1 deletion apps/demos/Demos/Chat/Overview/jQuery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $(async () => {
const supportAgent = {
id: "d16d1a4c-5c67-4e20-b70e-2991c22747c3",
name: "Support Agent",
avatarUrl: "https://raw.githubusercontent.com/DevExpress/DevExtreme/refs/heads/24_2/apps/demos/images/petersmith.png",
avatarUrl: "../../../../images/petersmith.png",
};

let initialMessages = [
Expand Down

0 comments on commit aaa71fd

Please sign in to comment.