From 239bfb65abd662ccf8a9a59868bc6a3169bb45f2 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 7 Sep 2024 16:51:04 +0200 Subject: [PATCH] fix prettier --- static/js/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/index.js b/static/js/index.js index 24e6c78..69e5b29 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -294,7 +294,8 @@ new Vue({ generateKeys: function () { var self = this const genRandomHexBytes = size => - crypto.getRandomValues(new Uint8Array(size)) + crypto + .getRandomValues(new Uint8Array(size)) .reduce((acc, i) => acc + i.toString(16).padStart(2, '0'), '') debugcard =