Skip to content

Commit

Permalink
remove unwanted livewire if annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink committed Jan 23, 2024
1 parent e2823d1 commit 40546a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Components/views/script.blade.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php // @codeCoverageIgnoreStart ?>
@once("bundle:$module:$as")
<!--[BUNDLE: {{ $as }} from '{{ $module }}']-->
@if ($inline)
<?php if($inline) { ?>
<script data-module="{{ $module }}" data-alias="{{ $as }}" type="module" {{ $attributes }}>
{!! file_get_contents($bundle) !!}
</script>
@else
<?php } else { ?>
<script src="{{ route('bundle:import', $bundle->getFilename(), false) }}" data-module="{{ $module }}" data-alias="{{ $as }}" type="module" {{ $attributes }}></script>
@endif
<?php } ?>
<!--[ENDBUNDLE]>-->
@else {{-- @once else clause --}}
<!--[SKIPPED: {{ $as }} from '{{ $module }}']-->
Expand Down

0 comments on commit 40546a0

Please sign in to comment.