1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-14 13:00:05 +02:00

Merge branch 'BlackDex-fix-admin-repost'

Dieser Commit ist enthalten in:
Daniel García 2022-12-04 23:16:54 +01:00
Commit 06189a58fe
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: FC8A7D14C3CD543A

Datei anzeigen

@ -32,7 +32,11 @@
<script>
'use strict';
function reload() { window.location.reload(); }
function reload() {
// Reload the page by setting the exact same href
// Using window.location.reload() could cause a repost.
window.location = window.location.href;
}
function msg(text, reload_page = true) {
text && alert(text);
reload_page && reload();