fix serverless.yml and project loading.
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-07-19 10:45:27 +02:00
parent 8c6a94511d
commit 0a8474b033
2 changed files with 11 additions and 4 deletions
+8 -1
View File
@@ -6,11 +6,18 @@
import QuestLog from "../components/QuestLog.svelte";
import RefreshSelection from "../components/RefreshSelection.svelte";
import projectGroupStore from "../stores/projectGroup";
import projectStore from "../stores/project";
import { sortProjects } from "../utils/sorters";
export let groupId = "";
export let projectId = "";
$: {
if ($projectStore.stale && !$projectStore.loading) {
projectStore.load();
}
}
$: {
if ($projectGroupStore.stale && !$projectGroupStore.loading) {
projectGroupStore.load();
@@ -53,4 +60,4 @@
margin-top: 0;
box-sizing: border-box;
}
</style>
</style>