This commit is contained in:
matthewalanpenning 2023-05-09 05:33:22 -04:00
parent 8d18945878
commit 857740912c
4 changed files with 7 additions and 3 deletions

View File

@ -1,2 +1,5 @@
# v0.0.2
- Fix for reloading/loading of page content bug in network-acl page
# v0.0.1
- Fix an undefind varaible error when loading list of containers without root disk

View File

@ -40,7 +40,7 @@
<footer class="main-footer">
<div class="float-right d-none d-sm-block">
Version 0.0.1
Version 0.0.2
</div>
Copyright &copy; 2020-Present <a href="https://penninglabs.com">Penning Labs</a>. All rights reserved.
</footer>

View File

@ -13,7 +13,7 @@
<div class="col-12">
<p>Lxconsole is an open source management console providing a web-based user interface capable of managing multiple LXD servers from a single location.</p>
<p>
<strong>Version</strong>: <span id="versionNumber">v0.0.1</span> <br />
<strong>Version</strong>: <span id="versionNumber">v0.0.2</span> <br />
<strong>License</strong>: AGPL-3.0 <br />
<strong>URL</strong>: https://lxconsole.com <br />
</p>

View File

@ -332,6 +332,7 @@
],
order: [],
});
//Set reload page content
pageReloadTimeout = setTimeout(() => { reloadPageContent(); }, reloadTime);
@ -395,7 +396,7 @@
window.location.href = '../network-acls?id=' + serverId + '&project=' + project
}
else {
setTimeout(() => { reloadPageContent(); }, 1000);
loadPageContent()
operationStatusCheck()
}