diff --git a/src/components/timesheet/TimesheetFilterBar.tsx b/src/components/timesheet/TimesheetFilterBar.tsx
index 2327302..4914ae9 100644
--- a/src/components/timesheet/TimesheetFilterBar.tsx
+++ b/src/components/timesheet/TimesheetFilterBar.tsx
@@ -259,20 +259,18 @@ export default function TimesheetFilterBar({
type="button"
onClick={() => setIsExpanded((current) => !current)}
aria-label={isExpanded ? (labels?.hideFilters || "Hide filters") : (labels?.showFilters || "Filters")}
- className={`relative inline-flex h-9 w-9 items-center justify-center rounded-md border text-sm transition-colors sm:w-auto sm:gap-2 sm:px-3 ${
+ className={`relative inline-flex h-9 w-9 items-center justify-center rounded-md border text-sm transition-colors ${
isExpanded || hasActiveFilters
? "border-sky-200 bg-sky-50 text-sky-700 dark:border-sky-500/30 dark:bg-sky-500/15 dark:text-sky-300"
: "border-slate-200 bg-white text-slate-600 hover:border-slate-300 hover:text-slate-900 dark:border-slate-700 dark:bg-slate-800 dark:text-slate-200 dark:hover:border-slate-600 dark:hover:text-white"
}`}
>
- {isExpanded ? (labels?.hideFilters || "Hide filters") : (labels?.showFilters || "Filters")}
{hasActiveFilters && (
-
+
{activeChips.length}
)}
-
- } label={labels?.customTo || "To"}>
+ } label={labels?.customTo || "To date"}>
setDraftFilters((current) => ({ ...current, startedBefore: value }))}
diff --git a/src/locales/en.ts b/src/locales/en.ts
index 89ada89..bb24a73 100644
--- a/src/locales/en.ts
+++ b/src/locales/en.ts
@@ -378,8 +378,8 @@ export const en = {
billable: "Billable",
noTagsHint: "Create tags first from the Tags page.",
clearFilters: "Clear filters",
- customFromLabel: "From",
- customToLabel: "To",
+ customFromLabel: "From date",
+ customToLabel: "To date",
allClientsLabel: "All clients",
allProjectsLabel: "All projects",
allTagsLabel: "All tags",
diff --git a/src/locales/fa.ts b/src/locales/fa.ts
index ed4318b..977c34c 100644
--- a/src/locales/fa.ts
+++ b/src/locales/fa.ts
@@ -375,8 +375,8 @@ export const fa = {
billable: "قابل صورتحساب",
noTagsHint: "ابتدا از صفحه تگها، تگ ایجاد کنید.",
clearFilters: "پاک کردن فیلترها",
- customFromLabel: "از",
- customToLabel: "تا",
+ customFromLabel: "از تاریخ",
+ customToLabel: "تا تاریخ",
allClientsLabel: "همه مشتریها",
allProjectsLabel: "همه پروژهها",
allTagsLabel: "همه تگها",
diff --git a/src/pages/Timesheet.tsx b/src/pages/Timesheet.tsx
index 5d629b9..3e5ad27 100644
--- a/src/pages/Timesheet.tsx
+++ b/src/pages/Timesheet.tsx
@@ -2253,23 +2253,40 @@ export default function Timesheet() {
{runningEntry ? (
<>
-
-
- >
- ) : (
-
- )}
+
+
+ >
+ ) : (
+
+ )}