Skip to content

Commit

Permalink
fix(proposal): creation role bug (#2573)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenibir authored Feb 13, 2024
1 parent 31a9e56 commit bd1fc78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/proposals/create/OptionsArchetypes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default {
q-select.q-mt-xs(:options="tiers" dense dropdown-icon="fas fa-chevron-down" hide-bottom-space options-dense outlined rounded v-model="tier")
.row.justify-center(v-else)
.q-py-sm.q-mt-sm.text-center.full-width {{ $t('pages.proposals.create.optionsarchetypes.noArchetypesExistYet') }}
q-btn.text-xs.q-pa-none.q-ma-none.text-weight-900.text-secondary.text-underline(flat padding="0px" no-caps @click="$emit('changeOption','archetype')") {{ $t('pages.proposals.create.optionsarchetypes.pleaseCreateThemHere') }}
q-btn.text-xs.q-pa-none.q-ma-none.text-weight-900.text-secondary.text-underline(flat padding="0px" no-caps @click="$router.push({ name: 'configuration' })") {{ $t('pages.proposals.create.optionsarchetypes.pleaseCreateThemHere') }}
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/proposals/create/OptionsBadges.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default {
q-select.q-mt-xs(:options="badges" dense dropdown-icon="fas fa-chevron-down" hide-bottom-space options-dense outlined rounded v-model="badge")
.row.justify-center(v-else)
.q-py-sm.q-mt-sm.text-center.full-width {{ $t('pages.proposals.create.optionsbadges.noArchetypesExistYet') }}
q-btn.text-xs.q-pa-none.q-ma-none.text-weight-900.text-secondary.text-underline(flat padding="0px" no-caps @click="$emit('changeOption','archetype')") {{ $t('pages.proposals.create.optionsbadges.pleaseCreateThemHere') }}
q-btn.text-xs.q-pa-none.q-ma-none.text-weight-900.text-secondary.text-underline(flat padding="0px" no-caps @click="$router.push({ name: 'configuration' })") {{ $t('pages.proposals.create.optionsbadges.pleaseCreateThemHere') }}
</template>
Expand Down

0 comments on commit bd1fc78

Please sign in to comment.