+
-
);
};
diff --git a/frontend/src/js/entity-history/VisibilityControl.tsx b/frontend/src/js/entity-history/VisibilityControl.tsx
index 1f605a8366..c87ea0efd1 100644
--- a/frontend/src/js/entity-history/VisibilityControl.tsx
+++ b/frontend/src/js/entity-history/VisibilityControl.tsx
@@ -1,9 +1,8 @@
import { faEye, faEyeSlash } from "@fortawesome/free-regular-svg-icons";
import { memo } from "react";
import { useTranslation } from "react-i18next";
-import { Button } from "../ui-components/Button";
import { Icon } from "../ui-components/Icon";
-
+import { ToggleButton } from "../ui-components/ToggleButton";
import { Tooltip, TooltipTrigger } from "../ui-components/Tooltip";
const VisibilityControl = ({
@@ -18,13 +17,13 @@ const VisibilityControl = ({
return (
-
-
+
{t("history.blurred")}
diff --git a/frontend/src/js/entity-history/timeline-search/SearchControl.tsx b/frontend/src/js/entity-history/timeline-search/SearchControl.tsx
index f5fc79ce12..746a128cf4 100644
--- a/frontend/src/js/entity-history/timeline-search/SearchControl.tsx
+++ b/frontend/src/js/entity-history/timeline-search/SearchControl.tsx
@@ -1,8 +1,8 @@
import { faSearch } from "@fortawesome/free-solid-svg-icons";
import { memo } from "react";
import { useTranslation } from "react-i18next";
-import { Button } from "../../ui-components/Button";
import { Icon } from "../../ui-components/Icon";
+import { ToggleButton } from "../../ui-components/ToggleButton";
import { Tooltip, TooltipTrigger } from "../../ui-components/Tooltip";
import { useTimelineSearch } from "./timelineSearchState";
@@ -10,19 +10,17 @@ const SearchControl = () => {
const { t } = useTranslation();
const { searchVisible, setSearchVisible } = useTimelineSearch();
- const toggleSearchVisible = () => setSearchVisible(!searchVisible);
return (
-
-
+
{t("history.search")}
diff --git a/frontend/src/js/entity-history/timeline/TimelineEmptyPlaceholder.tsx b/frontend/src/js/entity-history/timeline/TimelineEmptyPlaceholder.tsx
index 4fc6796688..8792941096 100644
--- a/frontend/src/js/entity-history/timeline/TimelineEmptyPlaceholder.tsx
+++ b/frontend/src/js/entity-history/timeline/TimelineEmptyPlaceholder.tsx
@@ -22,7 +22,7 @@ const message = tv({
});
const bigIcon = tv({
- base: ["text-[120px]", "text-gray-100"],
+ base: ["size-[120px]", "text-gray-100"],
});
export const TimelineEmptyPlaceholder = ({
diff --git a/frontend/src/js/error-fallback/ErrorFallback.tsx b/frontend/src/js/error-fallback/ErrorFallback.tsx
index c08c19f8a5..e27162136b 100644
--- a/frontend/src/js/error-fallback/ErrorFallback.tsx
+++ b/frontend/src/js/error-fallback/ErrorFallback.tsx
@@ -35,25 +35,21 @@ const ErrorFallback = ({
{allowFullRefresh && (
<>
{t("error.reloadDescription")}
-
window.location.reload()}
- >
- {t("error.reload")}
-
+
+ window.location.reload()}>
+ {t("error.reload")}
+
+
>
)}
{onReset && (
<>
{t("error.resetDescription")}
-
- {t("error.reset")}
-
+
+
+ {t("error.reset")}
+
+
>
)}
diff --git a/frontend/src/js/external-forms/FormHeader.tsx b/frontend/src/js/external-forms/FormHeader.tsx
index 3465c33428..35831d1189 100644
--- a/frontend/src/js/external-forms/FormHeader.tsx
+++ b/frontend/src/js/external-forms/FormHeader.tsx
@@ -28,8 +28,8 @@ const FormHeader = ({