Skip to content

Commit ab39573

Browse files
committed
style changes
1 parent d83d11d commit ab39573

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/components/ui/MainPanel/Dataset.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const DescriptionContent = ({
4141
return (
4242
<div className='grid gap-1'>
4343
<div className='mb-2'>
44-
<h1 className='text-lg font-bold'>
44+
<h1 className="text-lg font-bold break-all">
4545
{title ? title : "Store"}
4646
</h1>
4747
<p className="whitespace-pre-wrap break-words"
@@ -126,7 +126,7 @@ const Dataset = ({setOpenVariables} : {setOpenVariables: React.Dispatch<React.Se
126126
}, 0);
127127
}
128128
}, []);
129-
129+
console.log(activeOption)
130130
return (
131131
<>
132132
<Popover>
@@ -281,7 +281,7 @@ const Dataset = ({setOpenVariables} : {setOpenVariables: React.Dispatch<React.Se
281281
<div
282282
className="absolute -top-8"
283283
style={{
284-
left: ['localZarr', 'localNetCDF', 'remote'].includes(activeOption) ? -215 : -130,
284+
left: ['local', 'remote'].includes(activeOption) ? -215 : -130,
285285
}}
286286
/>
287287
</PopoverTrigger>

src/components/ui/MainPanel/MetaDataInfo.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,7 @@ const MetaDataInfo = ({ meta, metadata, setShowMeta, setOpenVariables, popoverSi
191191
} else {
192192
setCached(false)
193193
}
194-
195194
},[meta, chunkIDs])
196-
197195
return (
198196
// Don't put any more work in the landing page version. Since it won't be visible in the future
199197
// The logic here was to just get divs to be used later in a Card or Dialog component!

0 commit comments

Comments
 (0)