Skip to content

Commit

Permalink
Merge pull request #34 from mapswipe/project-selection-workflow
Browse files Browse the repository at this point in the history
feat(projects): change project selection workflow to force project de…
  • Loading branch information
Hagellach37 authored Jul 24, 2024
2 parents 89eb016 + b46004d commit e71581e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/ProjectMoreInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default defineComponent({
<template>
<v-dialog max-width="1000">
<template v-slot:activator="{ props: activatorProps }">
<v-btn color="primary" v-bind="activatorProps">{{ $t('projectsView.moreInfo') }}</v-btn>
<v-btn color="primary" v-bind="activatorProps">{{ $t('projectsView.contribute') }}</v-btn>
</template>
<template v-slot:default="{ isActive }">
<v-card>
Expand Down
9 changes: 1 addition & 8 deletions src/views/ProjectsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,20 +239,13 @@ export default defineComponent({
>&nbsp;{{ $t('projectsView.byYou') }}</span
>
</span>
<v-spacer />
<project-more-info
v-if="!projectUnavailable(project)"
:project="project"
:fallbackImage="fallbackImage"
:selectFun="selectProject"
/>
<v-spacer />
<v-btn
color="primary"
:disabled="projectUnavailable(project)"
@click="selectProject(project)"
>
{{ $t('projectsView.contribute') }}
</v-btn>
</v-card-actions>
</v-card>
</v-hover>
Expand Down

0 comments on commit e71581e

Please sign in to comment.