Rename a duplicate label

This commit is contained in:
TwistedUmbrellaX 2024-10-29 10:19:19 -04:00
parent cb588df512
commit 1e93a3dca7

View File

@ -607,7 +607,7 @@
<br /> <br />
<summary>Storage Usage</summary> <summary>Storage Usage</summary>
<div class="fieldDescription">See how much space each library uses.</div> <div class="fieldDescription">See how much space each library uses.</div>
<textarea id="storage" rows="20" cols="75" readonly></textarea> <textarea id="storageText" rows="20" cols="75" readonly></textarea>
</details> </details>
</fieldset> </fieldset>
</form> </form>
@ -938,7 +938,7 @@
const bundleText = await bundle.text(); const bundleText = await bundle.text();
// Display it to the user // Display it to the user
const ta = document.querySelector("textarea#storage"); const ta = document.querySelector("textarea#storageText");
ta.value = bundleText; ta.value = bundleText;
} }