We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e38bb47 commit ae58999Copy full SHA for ae58999
resources/views/script.blade.php
@@ -4,8 +4,8 @@
4
@if(config('umami.host_url')) data-host-url="{{ config('umami.host_url') }}" @endif
5
@if(config('umami.domains')) data-domains="{{ config('umami.domains') }}" @endif
6
@if(config('umami.tag')) data-tag="{{ config('umami.tag') }}" @endif
7
- data-auto-track="{{ config('umami.auto_track') }}"
8
- data-exclude-search="{{ config('umami.exclude_search') }}"
9
- data-exclude-hash="{{ config('umami.exclude_hash') }}">
+ data-auto-track="{{ config('umami.auto_track') ? 'true' : 'false' }}"
+ data-exclude-search="{{ config('umami.exclude_search') ? 'true' : 'false' }}"
+ data-exclude-hash="{{ config('umami.exclude_hash') ? 'true' : 'false' }}">
10
</script>
11
@endif
0 commit comments