fix: Add horizontal scroll bar to views (#2736)
* add errors for duplicate labels * adding horizonatal scroll bar to views --------- Co-authored-by: rahulramesha <rahul@appsmith.com>
This commit is contained in:
parent
96862e06ef
commit
d733a53ea6
5 changed files with 15 additions and 5 deletions
|
|
@ -117,7 +117,7 @@ export const CycleKanBanLayout: React.FC = observer(() => {
|
|||
<Spinner />
|
||||
</div>
|
||||
) : (
|
||||
<div className={`relative min-w-full w-max min-h-full h-max bg-custom-background-90 px-3`}>
|
||||
<div className={`relative min-w-full min-h-full h-max bg-custom-background-90 px-3 horizontal-scroll-enable`}>
|
||||
<DragDropContext onDragEnd={onDragEnd}>
|
||||
{currentKanBanView === "default" ? (
|
||||
<KanBan
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ export const ModuleKanBanLayout: React.FC = observer(() => {
|
|||
<Spinner />
|
||||
</div>
|
||||
) : (
|
||||
<div className={`relative min-w-full w-max min-h-full h-max bg-custom-background-90 px-3`}>
|
||||
<div className={`relative min-w-full min-h-full h-max bg-custom-background-90 px-3 horizontal-scroll-enable`}>
|
||||
<DragDropContext onDragEnd={onDragEnd}>
|
||||
{currentKanBanView === "default" ? (
|
||||
<KanBan
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ export const KanBanLayout: React.FC = observer(() => {
|
|||
<Spinner />
|
||||
</div>
|
||||
) : (
|
||||
<div className={`relative min-w-full w-max min-h-full h-max bg-custom-background-90 px-3`}>
|
||||
<div className="relative min-w-full min-h-full h-max bg-custom-background-90 px-3 horizontal-scroll-enable">
|
||||
<DragDropContext onDragStart={onDragStart} onDragEnd={onDragEnd}>
|
||||
{currentKanBanView === "default" ? (
|
||||
<KanBan
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ export const SpreadsheetView: React.FC<Props> = observer((props) => {
|
|||
<div className="h-full w-full flex flex-col">
|
||||
<div
|
||||
ref={containerRef}
|
||||
className="flex max-h-full h-full overflow-y-auto divide-x-[0.5px] divide-custom-border-200"
|
||||
className="flex max-h-full h-full overflow-y-auto divide-x-[0.5px] divide-custom-border-200 horizontal-scroll-enable"
|
||||
>
|
||||
{issues && issues.length > 0 ? (
|
||||
<>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue