Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/a9f438b5483bc9cf427d718f12a8acad188c562f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed overflowing of episode titles in wanted view.

pull/2434/head
morpheus65535 1 year ago
parent 2b9275244b
commit a9f438b548

@ -10,7 +10,7 @@ import { useTableStyles } from "@/styles";
import { BuildKey } from "@/utilities";
import { faSearch } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { Anchor, Badge, Group, Text } from "@mantine/core";
import { Anchor, Badge, Group } from "@mantine/core";
import { FunctionComponent, useMemo } from "react";
import { Link } from "react-router-dom";
import { Column } from "react-table";
@ -37,11 +37,6 @@ const WantedSeriesView: FunctionComponent = () => {
},
{
accessor: "episodeTitle",
Cell: ({ value }) => {
const { classes } = useTableStyles();
return <Text className={classes.noWrap}>{value}</Text>;
},
},
{
Header: "Missing",

Loading…
Cancel
Save