The contents of Panelite are updated on every release, however Jupyterlite caches old edits to files. If you want to reset the storage and delete all modifications you made to the contents then run the code below and click the button Clear JupyterLite local storage
button.
from IPython.display import display, HTML
display(HTML("""
<button type="button" id="button_for_indexeddb">Clear JupyterLite local storage</button>
<div id="clear-storage-message"></div>
<script>
window.button_for_indexeddb.onclick = function(e) {
message = document.getElementById("clear-storage-message")
message.innerText="Running"
window.indexedDB.open('JupyterLite Storage').onsuccess = function(e) {
// There are also other tables that I'm not clearing:
// "counters", "settings", "local-storage-detect-blob-support"
let tables = ["checkpoints", "files"];
let db = e.target.result;
let t = db.transaction(tables, "readwrite");
function clearTable(tablename) {
let st = t.objectStore(tablename);
st.count().onsuccess = function(e) {
console.log("Deleting " + e.target.result + " entries from " + tablename + "...");
st.clear().onsuccess = function(e) {
console.log(tablename + " is cleared!");
}
}
}
for (let tablename of tables) {
clearTable(tablename);
}
}
message.innerText="JupyterLite local storage has successfully been reset"
};
</script>
"""))