Skip to content

Commit

Permalink
Fixed linter
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Schauer-Köckeis <[email protected]>
  • Loading branch information
Gepardgame committed Sep 17, 2024
1 parent 7054907 commit 1ad17b4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/views/portfolio/projects/ProjectDetailsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -710,10 +710,12 @@ export default {
},
deleteProject: async function () {
this.$root.$emit('bv::hide::modal', 'projectDetailsModal');
let confirmed = await this.$bvModal
.msgBoxConfirm(this.$t('message.project_delete_message'), {
let confirmed = await this.$bvModal.msgBoxConfirm(
this.$t('message.project_delete_message'),
{
title: this.$t('message.project_delete_title'),
});
},
);
if (confirmed) {
let url =
`${this.$api.BASE_URL}/${this.$api.URL_PROJECT}/` + this.project.uuid;
Expand Down

0 comments on commit 1ad17b4

Please sign in to comment.