We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21936e1 commit 1bdf7e8Copy full SHA for 1bdf7e8
frank-doc-frontend/.gitignore
@@ -45,3 +45,6 @@ Thumbs.db
45
# Maven
46
node/
47
target/
48
+
49
+# Frank!Doc
50
+/src/js/frankdoc.json
frank-doc-frontend/src/app/app.service.ts
@@ -26,7 +26,9 @@ export class AppService {
26
constructor(private http: HttpClient) {}
27
28
private getFrankDoc(): Observable<FrankDoc> {
29
- return this.http.get<FrankDoc>(environment.frankDocUrl);
+ return this.http.get<FrankDoc>(
30
+ `${environment.frankDocUrl}?cache=${Date.now()}`
31
+ );
32
}
33
34
showHideDeprecated(): void {
0 commit comments