Skip to content

Commit

Permalink
fix(ui): fix path of Core apps page
Browse files Browse the repository at this point in the history
  • Loading branch information
andre8244 committed Dec 20, 2024
1 parent 96e478d commit 98dc87f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/ui/src/components/software-center/AppList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export default {
return false;
},
showSoftwareCenterCoreApps() {
this.$router.push("/software-center/SoftwareCenterCoreApps");
this.$router.push("/software-center/core-apps");
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion core/ui/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const routes = [
),
},
{
path: "/software-center/SoftwareCenterCoreApps",
path: "/software-center/core-apps",
name: "SoftwareCenterCoreApps",
component: () =>
import(
Expand Down
2 changes: 1 addition & 1 deletion core/ui/src/views/SoftwareCenter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ export default {
this.listModules();
},
showSoftwareCenterCoreApps() {
this.$router.push("/software-center/SoftwareCenterCoreApps");
this.$router.push("/software-center/core-apps");
},
},
};
Expand Down

0 comments on commit 98dc87f

Please sign in to comment.