Skip to content

Commit

Permalink
fix: remove cutoff popover and use title tag
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-harris authored and skeptrunedev committed Aug 30, 2024
1 parent a301d96 commit fab7326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions frontends/chat/src/components/ScoreChunk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ import {
} from "../utils/apiTypes";
import { BiRegularChevronDown, BiRegularChevronUp } from "solid-icons/bi";
import sanitizeHtml from "sanitize-html";
import { Tooltip } from "shared/ui";
import { AiOutlineCopy } from "solid-icons/ai";
import { FiCheck, FiExternalLink, FiGlobe } from "solid-icons/fi";
import { FiCheck, FiExternalLink } from "solid-icons/fi";

export const sanitzerOptions = {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
Expand Down Expand Up @@ -105,10 +104,6 @@ const ScoreChunk = (props: ScoreChunkProps) => {
>
<div class="flex w-full flex-col space-y-2 dark:text-white">
<div class="flex h-fit items-center space-x-1">
<Tooltip
body={<FiGlobe class="z-50 h-5 w-5 text-green-500" />}
tooltipText="Publicly visible"
/>
<span class="font-semibold">Doc: {props.counter}</span>
<div class="flex-1" />
<Show when={!copied()}>
Expand Down
1 change: 1 addition & 0 deletions server/src/operators/words_operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ impl BkTree {
}

/// Iterator over BK-tree elements
#[allow(dead_code)]
pub struct IntoIter {
queue: Vec<Node>,
}
Expand Down

0 comments on commit fab7326

Please sign in to comment.