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

fix: scroll on explore models does not work #427

Merged
merged 1 commit into from
Oct 23, 2023
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: 1 addition & 1 deletion web/app/_components/ExploreModelContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ExploreModelList from '../ExploreModelList'
import ExploreModelFilter from '../ExploreModelFilter'

const ExploreModelContainer: React.FC = () => (
<div className="flex flex-1 flex-col overflow-hidden px-16 pt-14">
<div className="flex h-full w-full flex-1 flex-col px-16 pt-14">
<HeaderTitle title="Explore Models" />
{/* <SearchBar
type={SearchType.Model}
Expand Down
4 changes: 3 additions & 1 deletion web/app/_components/LeftRibbonNav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ const LeftRibbonNav: React.FC = () => {

return (
<nav className="flex h-screen w-20 flex-col bg-gray-900">
<div className='mx-auto mt-4'>
<CompactLogo />
</div>

<div className="flex w-full flex-1 flex-col items-center justify-between px-3 py-6">
<div>
<div className="flex flex-1 flex-col gap-2">
<button
onClick={onConversationClick}
className={`rounded-lg p-4 ${bgColor} hover:bg-gray-400`}
Expand Down
Loading