@everymatrix/casino-tournaments-filter-controller 1.2.0 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-tournaments-filter-controller",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/casino-tournaments-filter-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "3800c3e93fdc948c5bc48101acce6cd81ce65706"
40
+ "gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
41
41
  }
@@ -9,7 +9,7 @@
9
9
  // Array as string, without empty spaces (ex: "All,Scheduled,Ongoing,Finished");
10
10
  export let filters:string = '';
11
11
  export let activefilters:string = '';
12
- export let translationUrl:string = '';
12
+ export let translationurl:string = '';
13
13
 
14
14
  export let clientstyling:string = '';
15
15
  export let clientstylingurl:string = '';
@@ -26,7 +26,7 @@
26
26
  let shownStatus:string = '';
27
27
 
28
28
  const setTranslationUrl = ():void => {
29
- let url:string = translationUrl;
29
+ let url:string = translationurl;
30
30
 
31
31
  fetch(url).then((res:any) => res.json())
32
32
  .then((res) => {
@@ -145,7 +145,7 @@
145
145
 
146
146
  $: customStylingContainer && clientstyling && setClientStyling();
147
147
  $: customStylingContainer && clientstylingurl && setClientStylingURL();
148
- $: translationUrl && setTranslationUrl();
148
+ $: translationurl && setTranslationUrl();
149
149
  $: filters && processFilters();
150
150
  $: activefilters && setActiveFilters();
151
151
  </script>