Undo reaction with clicking minus (#3773)

* Undo reaction with clicking minus

* fix isMyNote
This commit is contained in:
MeiMei 2018-12-28 01:01:58 +09:00 committed by syuilo
parent 6c1893f869
commit 1029bff5ff
6 changed files with 26 additions and 4 deletions

View file

@ -53,9 +53,12 @@
<button v-else class="inhibitedButton">
<fa icon="ban"/>
</button>
<button class="reactionButton" :class="{ reacted: appearNote.myReaction != null }" v-if="!isMyNote" @click="react()" ref="reactButton" :title="$t('add-reaction')">
<button v-if="!isMyNote && appearNote.myReaction == null" class="reactionButton" @click="react()" ref="reactButton" :title="$t('add-reaction')">
<fa icon="plus"/>
</button>
<button v-if="!isMyNote && appearNote.myReaction != null" class="reactionButton reacted" @click="undoReact(appearNote)" ref="reactButton" :title="$t('undo-reaction')">
<fa icon="minus"/>
</button>
<button @click="menu()" ref="menuButton">
<fa icon="ellipsis-h"/>
</button>