fix front page project links going to questlog on mobile, projects on desktop.
continuous-integration/drone/push Build is passing
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -46,7 +46,7 @@
|
||||
nonHiddenTasks = [...activeTasks, ...todoTasks, ...onholdTasks];
|
||||
}
|
||||
|
||||
$: linkTarget = IS_MOBILE ? `/questlog#${project.id}` : `/projects#${project.id}`
|
||||
$: linkTarget = IS_MOBILE ? `/projects#${project.id}` : `/questlog#${project.id}`
|
||||
</script>
|
||||
|
||||
<StatusColor affects="project" entry={project}>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
import RefreshSelection from "../components/RefreshSelection.svelte";
|
||||
import type { ProjectResult } from "../models/project";
|
||||
import { fpGoalStore } from "../stores/goal";
|
||||
import projectStore, { fpProjectStore } from "../stores/project";
|
||||
import { fpProjectStore } from "../stores/project";
|
||||
import { fpTaskStore } from "../stores/tasks";
|
||||
|
||||
let fakeMap: {[projectId: string]: boolean} = {}
|
||||
|
||||
Reference in New Issue
Block a user