Skip to content

Commit

Permalink
feat: add notice to support markdown on notes (#7011)
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Nov 7, 2023
1 parent 0e5e3eb commit 97f11b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Shared/Form/TextArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ defineExpose({
</script>

<template>
<div class="mb3">
<div class="mb-3">
<label v-if="label" class="mb-2 block text-sm dark:text-gray-100" :for="id">
{{ label }}
<span v-if="!required" class="optional-badge rounded px-[3px] py-px text-xs">
Expand Down
2 changes: 2 additions & 0 deletions resources/js/Shared/Modules/Notes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
:rows="10"
:required="true"
:maxlength="65535"
:markdown="true"
:textarea-class="'block w-full mb-3'" />

<!-- title -->
Expand Down Expand Up @@ -184,6 +185,7 @@
:rows="10"
:required="true"
:maxlength="65535"
:markdown="true"
:textarea-class="'block w-full mb-3'" />

<!-- title -->
Expand Down

0 comments on commit 97f11b1

Please sign in to comment.