File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 "author" : " solidtime" ,
4949 "license" : " AGPL-3.0" ,
5050 "devDependencies" : {
51- "vite-plugin-dts" : " ^4.0.3"
51+ "@types/chroma-js" : " ^3.1.0" ,
52+ "@zodios/core" : " ^10.9.6" ,
53+ "vite-plugin-dts" : " ^4.0.3" ,
54+ "zod" : " ^3.23.8"
5255 },
5356 "peerDependencies" : {
5457 "@floating-ui/vue" : " ^1.1.4" ,
Original file line number Diff line number Diff line change @@ -74,10 +74,10 @@ const props = withDefaults(
7474 }
7575);
7676
77- const filteredResults = ref ([] as ClientsWithProjectsWithTasks );
77+ const filteredResults = ref < ClientsWithProjectsWithTasks > ([]);
7878
7979// computed filterProjects that flattens the first layer of filteredResults and combines all the projects
80- const filteredProjects = computed (() => {
80+ const filteredProjects = computed < ProjectWithTasks []> (() => {
8181 return filteredResults .value .map ((client ) => client .projects ).flat ();
8282});
8383
You can’t perform that action at this time.
0 commit comments