sentry refactoring

This commit is contained in:
Burak Civan 2022-11-09 10:49:34 +03:00
parent 4e7ad0f117
commit 1e3705616d
5 changed files with 5 additions and 2 deletions

View File

@ -44,7 +44,7 @@ import { BrowserTracing } from "@sentry/tracing";
Sentry.init({
Vue,
dsn: "",
dsn: sentry_dsn,
logErrors: true,
integrations: [
new BrowserTracing({

View File

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

View File

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

View File

@ -3,6 +3,7 @@
<script type="text/javascript">
var company_currency_code = '{{ default_currency() }}';
var sentry_dsn = "https://9ffc5a5f104d4087911f60714e8bdbe9@o4503982427078656.ingest.sentry.io/4503999793594368";
</script>
@stack('scripts_start')

View File

@ -1,3 +1,3 @@
<div class="flex flex-col lg:flex-row sm:mt-12">
<div {{ ((! $attributes->has('override')) || ($attributes->has('override') && ! in_array('class', explode(',', $attributes->get('override'))))) ? $attributes->merge(['class' => 'flex flex-col lg:flex-row sm:mt-12']) : $attributes }}>
{!! $slot !!}
</div>