Skip to content

Commit 82d7c08

Browse files
committed
fix: incorrect case causing edit menu to not open
1 parent 7ebb122 commit 82d7c08

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

public/js/roms-manage-page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class EmunexRomsManagePage extends LitElement {
276276
<label>ID (Read-only)</label>
277277
<input
278278
type="text"
279-
.value=${this._editingrom.id}
279+
.value=${this._editingRom.id}
280280
readonly
281281
style="opacity: 0.7; cursor: not-allowed"
282282
/>
@@ -448,7 +448,7 @@ class EmunexRomsManagePage extends LitElement {
448448

449449
async submitEdit(e) {
450450
e.preventDefault();
451-
const id = this._editingrom.id;
451+
const id = this._editingRom.id;
452452
const root = this.renderRoot;
453453

454454
const reqData = {

0 commit comments

Comments
 (0)