fix(front): remove cache-only for ABOUT GraphQL details on homepage
Otherwise this doesn't show the title of the instance when going back Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
94182aed2d
commit
6858bcbbda
|
@ -236,9 +236,7 @@ const { result: aboutConfigResult } = useQuery<{
|
||||||
IConfig,
|
IConfig,
|
||||||
"name" | "description" | "slogan" | "registrationsOpen"
|
"name" | "description" | "slogan" | "registrationsOpen"
|
||||||
>;
|
>;
|
||||||
}>(ABOUT, undefined, {
|
}>(ABOUT);
|
||||||
fetchPolicy: "cache-only",
|
|
||||||
});
|
|
||||||
|
|
||||||
const config = computed(() => aboutConfigResult.value?.config);
|
const config = computed(() => aboutConfigResult.value?.config);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue