Skip to content

Commit

Permalink
fix: fix one on one note length (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Jun 18, 2021
1 parent e1e28af commit 0982bae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function rules(): array
'company_id' => 'required|integer|exists:companies,id',
'author_id' => 'required|integer|exists:employees,id',
'one_on_one_entry_id' => 'required|integer|exists:one_on_one_entries,id',
'note' => 'required|string|max:255',
'note' => 'required|string|max:65535',
];
}

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Dashboard/OneOnOnes/Partials/Note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<li v-for="note in localNotes" :key="note.id" :data-cy="'note-' + note.id" class="relative mb2 ml3" @mouseover="showHoverOnNote(note.id)"
@mouseleave="hideHoverOnNote()"
>
<span v-if="noteToEdit != note.id">
<span v-if="noteToEdit != note.id" class="lh-copy">
{{ note.note }}
</span>

Expand Down

0 comments on commit 0982bae

Please sign in to comment.