Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sgfost committed Sep 29, 2023
1 parent 3244d0e commit 37985c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend/src/components/ReviewEditor.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<template>
<div class="row">
<div class="col-sm-12 col-md-8">
<div v-if="closed" class="alert alert-danger"><b>This review is closed.</b> Re-open it to invite reviewers or send feedback.</div>
<div v-if="closed" class="alert alert-danger">
<b>This review is closed.</b> Re-open it to invite reviewers or send feedback.
</div>
<ReviewInvitations :review-id="reviewId" :disabled="closed" @pollEvents="retrieveEvents" />
<h2 class="mt-4">Feedback</h2>
<ReviewFeedback :review-id="reviewId" :disabled="closed" />
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/components/ReviewInvitations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@
getStatusDisplay(inv).label
}}</span>
<span class="float-md-end">
<button v-if="!disabled" class="btn btn-outline-secondary" @click="resendEmail(inv.slug)">
<button
v-if="!disabled"
class="btn btn-outline-secondary"
@click="resendEmail(inv.slug)"
>
Resend Invite
</button>
</span>
Expand Down

0 comments on commit 37985c7

Please sign in to comment.