Call tooltip again on custom fields jquery

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-08-08 18:53:57 +01:00
parent 40aca9709a
commit 6a3a38b6f6

View file

@ -85,3 +85,12 @@
</div>
@endforeach
@endif
<script nonce="{{ csrf_token() }}">
// We have to re-call the tooltip since this is pulled in after the DOM has loaded
$('[data-tooltip="true"]').tooltip({
container: 'body',
animation: true,
});
</script>