Skip to content

Commit

Permalink
FOUR-19753 : The task comments is not showing the buttons to register…
Browse files Browse the repository at this point in the history
… the comments
  • Loading branch information
hjonathan committed Oct 24, 2024
1 parent 7824dbb commit 6466f0c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions resources/views/tasks/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,22 @@ function() use ($task) {
], 'attributes' => 'v-cloak'])
@endsection
@section('content')
<div id="task" v-cloak class="tw-flex tw-w-full tw-grow">
<div class="menu-mask" :class="{ 'menu-open': showMenu }"></div>
<div class="info-main" :class="['tw-w-full tw-flex tw-grow',{ 'menu-open': showMenu }]">
<div id="task"
v-cloak
class="tw-flex tw-w-full tw-grow">
<div class="menu-mask"
:class="{ 'menu-open': showMenu }"></div>
<div class="info-main"
:class="['tw-w-full tw-flex tw-grow',{ 'menu-open': showMenu }]">
<div v-cloak class="tw-flex tw-w-full tw-grow">
<div class="tw-flex tw-w-full tw-grow">
<div class="tw-flex tw-flex-col tw-grow">
<div v-if="isSelfService" class="alert alert-primary" role="alert">
<button type="button" class="btn btn-primary" @click="claimTask">{{__('Claim Task')}}</button>
{{__('This task is unassigned, click Claim Task to assign yourself.')}}
</div>
<div class="tw-flex tw-flex-col tw-grow tw-overflow-hidden" id="interactionListener">
<div id="interactionListener"
class="tw-flex tw-flex-col tw-grow tw-overflow-hidden">
@can('editData', $task->processRequest)
<ul v-if="task.process_request.status === 'ACTIVE'" id="tabHeader" role="tablist" class="nav nav-tabs">
<li class="nav-item"><a id="pending-tab" data-toggle="tab" href="#tab-form" role="tab"
Expand Down

0 comments on commit 6466f0c

Please sign in to comment.