Skip to content

Commit

Permalink
fix model margin
Browse files Browse the repository at this point in the history
  • Loading branch information
zmh-program committed Oct 25, 2023
1 parent 1cbcbcc commit 02d6159
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/components/SelectGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ type SelectGroupProps = {

function GroupSelectItem(props: SelectItemProps) {
return (
<>
<div className={`mr-1`}>
{props.value}
{props.badge && (
<Badge className={`select-element badge ml-1 badge-${props.badge.variant}`}>
{props.badge.name}
</Badge>
)}
</>
</div>
);
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/conf.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axios from "axios";
import { Model } from "./conversation/types.ts";

export const version = "3.5.10";
export const version = "3.5.11";
export const dev: boolean = window.location.hostname === "localhost";
export const deploy: boolean = true;
export let rest_api: string = "http://localhost:8094";
Expand Down

0 comments on commit 02d6159

Please sign in to comment.