about summary refs log tree commit diff
path: root/app/views/invites
diff options
context:
space:
mode:
authorJennifer Kruse <jenkr55@gmail.com>2018-04-17 06:52:08 -0500
committerEugen Rochko <eugen@zeonfederated.com>2018-04-17 13:52:08 +0200
commitef12a2b74c735d78371be3f52b372c03318c3b16 (patch)
treed2fffd506757ad353ee24a0808b018c5afd4ecab /app/views/invites
parent07a7d5959cb722ca77b65b4f7458f861e4b6eb61 (diff)
Able to deactivate invites if they aren't expired (#7163)
Diffstat (limited to 'app/views/invites')
-rw-r--r--app/views/invites/_invite.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/invites/_invite.html.haml b/app/views/invites/_invite.html.haml
index 81d67eb7d..1c7ec311d 100644
--- a/app/views/invites/_invite.html.haml
+++ b/app/views/invites/_invite.html.haml
@@ -13,5 +13,5 @@
           = l invite.expires_at
   %td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code)
   %td
-    - if invite.expired? && policy(invite).destroy?
+    - if !invite.expired? && policy(invite).destroy?
       = table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete