Skip to content

Commit

Permalink
Fix duplicate 'img' tag in standalone button image preview
Browse files Browse the repository at this point in the history
Fix issue causing a missing image preview by addressing the duplication of the 'img' tag in the code. Previously, the use of <img> resulted in the generation of <img><img /> </img>, leading to the absence of a preview.
  • Loading branch information
rakibdevs authored Feb 9, 2024
1 parent 6e79e4e commit 3b7c03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ If you are going to use filemanager independently, meaning set the value of an i
</span>
<input id="thumbnail" class="form-control" type="text" name="filepath">
</div>
<img id="holder" style="margin-top:15px;max-height:100px;">
<div id="holder" style="margin-top:15px;max-height:100px;"></div>
```
1. Import lfm.js(run `php artisan vendor:publish` if you need).

Expand Down

0 comments on commit 3b7c03c

Please sign in to comment.