Skip to content

Commit

Permalink
chore: Misc ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rutwikhdev committed Feb 21, 2024
1 parent 2a51ecb commit ada07be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dashboard/src/components/ChangeAppPlanSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import AppPlanCard from '@/components/AppPlanCard.vue';
export default {
name: 'ChangeAppPlanCards',
name: 'ChangeAppPlanSelector',
components: {
AppPlanCard
},
Expand Down
8 changes: 4 additions & 4 deletions dashboard/src/views/site/SiteAppsAndSubscriptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,14 +170,14 @@
>
<template v-slot:body-content>
<ChangeAppPlanSelector
v-if="appToInstall?.document_name"
:app="appToInstall.document_name"
v-if="appToInstall?.app"
:app="appToInstall.app"
:frappeVersion="site?.frappe_version"
class="mb-9"
@change="
plan => {
selectedPlan = plan.name;
selectedPlanIsFree = plan.is_free;
selectedPlanIsFree = plan.price_usd === 0;
}
"
/>
Expand Down Expand Up @@ -328,7 +328,7 @@ export default {
},
validate() {
if (this.showPlanSelectionDialog && !this.selectedPlan) {
return 'Please select a plan to continue';
return 'Please aaa select a plan to continue';
}
},
onSuccess() {
Expand Down

0 comments on commit ada07be

Please sign in to comment.