@everymatrix/player-account-gaming-limits-group-edit 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/player-account-gaming-limits-group-edit",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/player-account-gaming-limits-group-edit.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "3800c3e93fdc948c5bc48101acce6cd81ce65706"
39
+ "gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
40
40
  }
@@ -19,10 +19,10 @@
19
19
  export let separatelimits:string = 'true';
20
20
  export let clientstyling:string = '';
21
21
  export let clientstylingurl:string = '';
22
- export let translationUrl:string = '';
22
+ export let translationurl:string = '';
23
23
 
24
24
  const setTranslationUrl = ():void => {
25
- let url:string = translationUrl;
25
+ let url:string = translationurl;
26
26
 
27
27
  fetch(url).then((res:any) => res.json())
28
28
  .then((res) => {
@@ -449,7 +449,7 @@
449
449
  $: limitsdata && lang;
450
450
  $: clientstyling && customStylingContainer && setClientStyling();
451
451
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
452
- $: translationUrl && setTranslationUrl();
452
+ $: translationurl && setTranslationUrl();
453
453
  </script>
454
454
 
455
455