Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
Fix impersonate btn logic
Browse files Browse the repository at this point in the history
  • Loading branch information
alecritson committed Oct 14, 2019
1 parent 506a328 commit fd998b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
</template>
</div>
<template slot="footer">
<button type="button" class="btn btn-primary" @click="process" :disabled="processing || (user && customerId != user.id)">Impersonate</button>
<button type="button" class="btn btn-primary" @click="process" :disabled="processing || (user && customerId == user.id)">Impersonate</button>
</template>
</candy-modal>
</div>
Expand Down

0 comments on commit fd998b4

Please sign in to comment.