Skip to content

Commit

Permalink
Merge branch 'main' into docs/standardize-commands
Browse files Browse the repository at this point in the history
  • Loading branch information
0xHieu01 authored Dec 25, 2023
2 parents 2ba5fca + dd0a18a commit 55ef47c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Jan is an open-source ChatGPT alternative that runs 100% offline on your compute
<tr style="text-align: center">
<td style="text-align:center"><b>Experimental (Nighlty Build)</b></td>
<td style="text-align:center" colspan="4">
<a href='https://github.com/janhq/jan/actions/runs/7310214854'>
<a href='https://github.com/janhq/jan/actions/runs/7316594225'>
<b>Github action artifactory</b>
</a>
</td>
Expand Down
2 changes: 1 addition & 1 deletion web/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: PropsWithChildren) {
return (
<html lang="en" suppressHydrationWarning>
<body className="bg-white font-sans text-sm antialiased dark:bg-background/50">
<body className="bg-white font-sans text-sm antialiased dark:bg-background">
<div className="title-bar" />
<Providers>{children}</Providers>
</body>
Expand Down
2 changes: 1 addition & 1 deletion web/containers/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const BaseLayout = (props: PropsWithChildren) => {
return (
<div className="flex h-screen w-screen flex-1 overflow-hidden">
<RibbonNav />
<div className=" relative top-12 flex h-[calc(100vh-96px)] w-full overflow-hidden bg-background/50">
<div className=" relative top-12 flex h-[calc(100vh-96px)] w-full overflow-hidden bg-background">
<div className="w-full">
<TopBar />
<m.div
Expand Down
2 changes: 1 addition & 1 deletion web/screens/Chat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const ChatScreen = () => {

return (
<div className="flex h-full w-full">
<div className="flex h-full w-60 flex-shrink-0 flex-col overflow-y-auto border-r border-border bg-background dark:bg-background/50">
<div className="flex h-full w-60 flex-shrink-0 flex-col overflow-y-auto border-r border-border bg-background">
<ThreadList />
</div>
<div
Expand Down
2 changes: 1 addition & 1 deletion web/screens/ExploreModels/ExploreModelItemHeader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const ExploreModelItemHeader: React.FC<Props> = ({ model, onClick, open }) => {

return (
<div
className="cursor-pointer rounded-t-md bg-background/50"
className="cursor-pointer rounded-t-md bg-background"
onClick={onClick}
>
{model.metadata.cover && (
Expand Down
2 changes: 1 addition & 1 deletion web/screens/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const SettingsScreen = () => {
</ScrollArea>
</div>

<div className="h-full w-full bg-background/50">
<div className="h-full w-full bg-background">
<ScrollArea className="h-full w-full">
<div className="p-4">
{handleShowOptions(activeStaticMenu || activePreferenceExtension)}
Expand Down
6 changes: 4 additions & 2 deletions web/screens/SystemMonitor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function SystemMonitorScreen() {
const { activeModel, stateModel, stopModel } = useActiveModel()

return (
<div className="flex h-full w-full bg-background dark:bg-background/50">
<div className="flex h-full w-full bg-background dark:bg-background">
<ScrollArea className="h-full w-full">
<div className="h-full p-8" data-test-id="testid-system-monitor">
<div className="grid grid-cols-2 gap-8 lg:grid-cols-3">
Expand Down Expand Up @@ -59,7 +59,9 @@ export default function SystemMonitorScreen() {
{activeModel && (
<div className="mt-8 overflow-hidden rounded-xl border border-border shadow-sm">
<div className="px-6 py-5">
<h4 className="text-base font-medium">Actively Running Models</h4>
<h4 className="text-base font-medium">
Actively Running Models
</h4>
</div>
<div className="relative overflow-x-auto shadow-md">
<table className="w-full px-8">
Expand Down

0 comments on commit 55ef47c

Please sign in to comment.