Skip to content

Commit

Permalink
feat: display selected modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kemboi22 committed Aug 11, 2024
1 parent 3fa23fa commit b3e7b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
$t("settings.enabled")
}}</template>
</cv-toggle>
<div>Selected Modules: {{erpNextModules}} </div>
<div>Selected Modules: {{erpSelectedModules}} </div>
<cv-multi-select
:label="'ERP Next Modules to be installed'"
:options="erpNextModules"
Expand All @@ -77,7 +77,7 @@

<div v-for="module in erpNextModules" :key="module.value">
<cv-toggle
:name="module.value"
:label="module.value"
:value="module.value"
v-model="erpSelectedModules"
:disabled="loading.getConfiguration || loading.configureModule"
Expand Down

0 comments on commit b3e7b82

Please sign in to comment.