mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
77a5e979c6
* Added the ability to disable group similar time entries * Fix E2E test for Group similar time entries * Simplify `TimeEntryGroupedTable` by replacing ternary with early return logic * Refactor time entry grouping settings: rename storage key, move logic into a dedicated module * Replace fixed `waitForTimeout` calls in E2E tests with element-based waits and assertions * Run frontend linting and formatting for changes
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import { useStorage } from '@vueuse/core';
|
|
|
|
export const groupSimilarTimeEntriesSetting = useStorage<boolean>(
|
|
'group-similar-time-entries',
|
|
true
|
|
);
|