Skip to content

Commit

Permalink
Merge pull request #103 from devaslanphp/dev
Browse files Browse the repository at this point in the history
Bug-fix: make ticket content required
  • Loading branch information
heloufir committed Sep 27, 2022
2 parents d5da6af + 476f22c commit 8d5ee77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions app/Http/Livewire/TicketsDialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ protected function getFormSchema(): array

RichEditor::make('content')
->label(__('Content'))
->required()
->fileAttachmentsDisk(config('filesystems.default'))
->fileAttachmentsDirectory('tickets')
->fileAttachmentsVisibility('private'),
Expand Down
11 changes: 8 additions & 3 deletions public/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<!-- Logo -->
<a class="logo ml-md-3" href="index.html" title="Help Desk">
<img src="/docs/assets/images/logo.png" alt="Help Desk" width="120" /> </a>
<span class="text-2 ml-2">v1.4.1</span>
<span class="text-2 ml-2">v1.4.2</span>
<!-- Logo End -->

<!-- Navbar Toggler -->
Expand Down Expand Up @@ -91,6 +91,7 @@
<li class="nav-item"><a class="nav-link" href="#idocs_faq">FAQ</a></li>
<li class="nav-item"><a class="nav-link" href="#idocs_changelog">Changelog</a>
<ul class="nav flex-column">
<li class="nav-item"><a class="nav-link" href="#v1-4-2">v1.4.2</a></li>
<li class="nav-item"><a class="nav-link" href="#v1-4-1">v1.4.1</a></li>
<li class="nav-item"><a class="nav-link" href="#v1-4-0">v1.4.0</a></li>
<li class="nav-item"><a class="nav-link" href="#v1-3-3">v1.3.3</a></li>
Expand Down Expand Up @@ -130,7 +131,7 @@ <h2>Help Desk</h2>
<div class="row">
<div class="col-sm-6 col-lg-4">
<ul class="list-unstyled">
<li><strong>Version:</strong> 1.4.1</li>
<li><strong>Version:</strong> 1.4.2</li>
<li><strong>Author:</strong> <a href="mailto:[email protected]"
target="_blank">heloufir</a>
</li>
Expand All @@ -139,7 +140,7 @@ <h2>Help Desk</h2>
<div class="col-sm-6 col-lg-4">
<ul class="list-unstyled">
<li><strong class="font-weight-700">Created:</strong> 12 September, 2022</li>
<li><strong>Update:</strong> 26 September, 2022</li>
<li><strong>Update:</strong> 27 September, 2022</li>
</ul>
</div>
</div>
Expand Down Expand Up @@ -329,6 +330,10 @@ <h5 class="mb-0"> <a href="#" class="collapsed" data-toggle="collapse" data-targ
<section id="idocs_changelog">
<h2>Changelog</h2>
<p class="text-4">See what's new added, changed, fixed, improved or updated in the latest versions. </p>
<h3 id="v1-4-2">Version 1.4.2 <small class="text-muted">(27 September, 2022)</small></h3>
<ul>
<li>Bug-fix: make ticket content required</li>
</ul>
<h3 id="v1-4-1">Version 1.4.1 <small class="text-muted">(25 September, 2022)</small></h3>
<ul>
<li>Bug-fix: users table searchable/sortable</li>
Expand Down

0 comments on commit 8d5ee77

Please sign in to comment.