Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Nov 6, 2023
1 parent 5a166d8 commit 11b78f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/js/components/journal/partials/JournalContentRate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
/>
<div class="pv3">
<div class="flex-ns justify-between">
<button v-cy-name="'save-entry-button'" class="btn btn-primary w-auto-ns w-100 mb2 pb0-ns" @click="saveComment()">
{{ $t('app.save') }}
</button>
<button v-cy-name="'save-entry-button'" class="btn btn-primary w-auto-ns w-100 mb2 pb0-ns" @click="saveComment()">
{{ $t('app.save') }}
</button>
</div>
</div>
</div>
Expand Down Expand Up @@ -168,9 +168,9 @@ export default {
axios.put('journal/day/' + this.day.id + '/update', {
comment: this.day.comment,
})
.then(response => {
this.editingComment();
});
.then(response => {
this.editingComment();
});
},
destroy() {
Expand Down

0 comments on commit 11b78f9

Please sign in to comment.