Apply suggestions, switched icons
Co-Authored-By: Raimund Schlüßler <raimund.schluessler@mailbox.org> Signed-off-by: Tim Hollmann <github.fe8c53c0@mail.tim-hollmann.de>
This commit is contained in:
parent
79b102f4a8
commit
da10bb9a58
1 changed files with 5 additions and 5 deletions
|
@ -40,14 +40,14 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|||
>
|
||||
<label :for="'detailsToggleCompleted_' + task.uid" />
|
||||
</span>
|
||||
<a class="star reactive" @click="togglePinned(task)">
|
||||
<span :class="[{'disabled': task.calendar.readOnly}, iconPinned]" class="icon" />
|
||||
</a>
|
||||
<a class="star reactive" @click="toggleStarred(task)">
|
||||
<span :class="[{'disabled': task.calendar.readOnly}, iconStar]"
|
||||
class="icon"
|
||||
/>
|
||||
</a>
|
||||
<a class="star reactive" @click="togglePinned(task)">
|
||||
<span :class="[{'disabled': task.calendar.readOnly}, iconPinned]" class="icon" />
|
||||
</a>
|
||||
<TaskStatusDisplay :task="task" />
|
||||
<div v-click-outside="() => finishEditing('summary')">
|
||||
<div v-linkify="task.summary"
|
||||
|
@ -591,9 +591,9 @@ export default {
|
|||
},
|
||||
iconPinned: function() {
|
||||
if (this.task.pinned) {
|
||||
return 'icon-bw icon-pinned-off'
|
||||
} else {
|
||||
return 'icon-bw icon-pinned'
|
||||
} else {
|
||||
return 'icon-bw icon-pinned-off'
|
||||
}
|
||||
},
|
||||
iconPercent: function() {
|
||||
|
|
Loading…
Reference in a new issue