Vereinheitlichen der API Parameter für Articles und Content Api Methoden. Interfaces etwas angepasst.
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
let loading = true
|
||||
let content: Content
|
||||
let connectedContentNotFound: boolean = false
|
||||
let oldLocation: string
|
||||
$: currentDomain = window.location.protocol + "//" + window.location.host
|
||||
|
||||
const load = (type?: string) => {
|
||||
@@ -36,8 +35,11 @@
|
||||
}
|
||||
|
||||
// Get content by API call
|
||||
let apiParams: APIParams = {
|
||||
filter,
|
||||
}
|
||||
loading = true
|
||||
getContent(filter)
|
||||
getContent(apiParams)
|
||||
.then((c) => {
|
||||
if (c) {
|
||||
if (type === "changedLanguage") {
|
||||
|
||||
Reference in New Issue
Block a user