We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2d68c commit 2dd079cCopy full SHA for 2dd079c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "laravel-frontend-file-manager",
3
- "version": "3.0.15",
+ "version": "3.0.16",
4
"description": "File manager for Laravel",
5
"keywords": [
6
"laravel",
src/components/manager/Thumbnail.vue
@@ -71,7 +71,7 @@ export default {
71
if (this.auth) {
72
GET.thumbnail(this.disk, this.file.path).then((response) => {
73
const mimeType = response.headers['content-type'].toLowerCase();
74
- const imgBase64 = Buffer.from(response.data, 'binary').toString('base64');
+ //const imgBase64 = Buffer.from(response.data, 'binary').toString('base64');
75
76
this.src = `data:${mimeType};base64,${response.data}`;
77
});
0 commit comments