Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOUR-19884: There is an scroll in task comments #7656

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions resources/sass/collapseDetails.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,5 @@
min-width: 0px;
max-width: 400px;
width: 315px;
padding-bottom: 20px;
height: calc(100vh - 190px);
overflow-y: auto;
}
11 changes: 5 additions & 6 deletions resources/views/tasks/edit.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends('layouts.layout',['content_margin' => 'tw-flex !tw-overflow-hidden'])
@extends('layouts.layout')

@section('meta')
<meta name="request-id" content="{{ $task->processRequest->id }}">
Expand Down Expand Up @@ -30,12 +30,11 @@ function() use ($task) {
<div
id="task"
v-cloak
class="tw-flex tw-w-full tw-grow">
<div :class="['menu-mask',{'menu-open': showMenu }]"></div>
<div :class="['info-main tw-w-full tw-flex tw-grow',{ 'menu-open': showMenu }]">
>
<div class="menu-mask" :class="{ 'menu-open': showMenu }"></div>
<div class="info-main" :class="{ 'menu-open': showMenu }">
<div
v-cloak
class="tw-flex tw-w-full tw-grow">
class="tw-flex tw-w-full tw-grow px-3">
<div class="tw-flex tw-w-full tw-grow">
<div class="tw-flex tw-flex-col tw-grow">
<div
Expand Down
Loading