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

Commit

Permalink
Fix disabled prop check
Browse files Browse the repository at this point in the history
  • Loading branch information
alecritson committed Aug 19, 2019
1 parent 0f0a100 commit 3c1b336
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 3c1b336

Please sign in to comment.