Merge branch 'master' into 2303-Allow-the-admin-to-edit-automatic-contribution-link

This commit is contained in:
Alexander Friedland 2022-11-01 14:38:48 +01:00 committed by GitHub
commit 23e480ef07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,15 +5,23 @@
<contribution-messages-list-item :message="message" /> <contribution-messages-list-item :message="message" />
</div> </div>
</b-container> </b-container>
<contribution-messages-formular <b-container>
v-if="['PENDING', 'IN_PROGRESS'].includes(state)" <contribution-messages-formular
:contributionId="contributionId" v-if="['PENDING', 'IN_PROGRESS'].includes(state)"
@get-list-contribution-messages="getListContributionMessages" :contributionId="contributionId"
@update-state="updateState" @get-list-contribution-messages="getListContributionMessages"
/> @update-state="updateState"
<div v-b-toggle="'collapse' + String(contributionId)" class="text-center pointer h2"> />
<b-icon icon="arrow-up-short"></b-icon> </b-container>
{{ $t('form.close') }}
<div
v-b-toggle="'collapse' + String(contributionId)"
class="text-center pointer h2 clearboth pt-1"
>
<b-button variant="outline-primary" block class="mt-4">
<b-icon icon="arrow-up-short"></b-icon>
{{ $t('form.close') }}
</b-button>
</div> </div>
</div> </div>
</template> </template>
@ -55,4 +63,7 @@ export default {
.temp-message { .temp-message {
margin-top: 50px; margin-top: 50px;
} }
.clearboth {
clear: both;
}
</style> </style>