Skip to content

Commit

Permalink
fix: images rename missing
Browse files Browse the repository at this point in the history
  • Loading branch information
hubert committed Oct 11, 2024
1 parent d45f036 commit 505e8e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/vue-web/src/admin/layouts/default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default defineComponent({
photo:
user.profile.picture ?? user.profile.avatar
? `${homeUrl}${user.profile.picture ?? user.profile.avatar}`
: void 0, //`${process.env.BASE_URL}static/images/head_default.jpg`,
: void 0, //`${process.env.BASE_URL}static/img/head_default.jpg`,
};
}
});
Expand Down
2 changes: 1 addition & 1 deletion clients/vue-web/src/configs/settings.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const defaultSettings: {
// iconfontUrl: '',
title: (i18nRender: (key: string, fallback: string, args?: any) => string) =>
i18nRender('site_title', 'Pomelo Admin'),
logo: `${process.env.BASE_URL}static/images/logo.png`,
logo: `${process.env.BASE_URL}static/img/logo.png`,
layout: {
type: LayoutType.MixedMenu,
contentWidth: ContentWidth.Fluid,
Expand Down

0 comments on commit 505e8e2

Please sign in to comment.