mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
max height on textareas for install details modal
This commit is contained in:
parent
76642bdc76
commit
22f46f5bf4
2 changed files with 6 additions and 4 deletions
|
|
@ -1,10 +1,7 @@
|
|||
import React from "react";
|
||||
import { useQuery } from "react-query";
|
||||
|
||||
import {
|
||||
SoftwareInstallStatus,
|
||||
getInstallStatusPredicate,
|
||||
} from "interfaces/software";
|
||||
import { SoftwareInstallStatus } from "interfaces/software";
|
||||
import mdmApi from "services/entities/mdm";
|
||||
|
||||
import Modal from "components/Modal";
|
||||
|
|
|
|||
|
|
@ -19,4 +19,9 @@
|
|||
overflow-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
&__output-textarea {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue