Работа над ночным режимом

This commit is contained in:
Book Pauk
2023-01-10 19:53:58 +07:00
parent 9724ec230c
commit 31481453f5
2 changed files with 15 additions and 4 deletions

View File

@@ -162,7 +162,7 @@ class LoaderPage {
loadBuffer(opts) {
if (opts.buffer.length) {
const file = new File([opts.buffer], 'dummyName-PasteFromClipboard');
const file = new File([opts.buffer], `paste_from_clipboard_#${utils.randomHexString(10)}`);
this.$emit('load-file', {file});
}
}