We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebb122 commit 82d7c08Copy full SHA for 82d7c08
1 file changed
public/js/roms-manage-page.js
@@ -276,7 +276,7 @@ class EmunexRomsManagePage extends LitElement {
276
<label>ID (Read-only)</label>
277
<input
278
type="text"
279
- .value=${this._editingrom.id}
+ .value=${this._editingRom.id}
280
readonly
281
style="opacity: 0.7; cursor: not-allowed"
282
/>
@@ -448,7 +448,7 @@ class EmunexRomsManagePage extends LitElement {
448
449
async submitEdit(e) {
450
e.preventDefault();
451
- const id = this._editingrom.id;
+ const id = this._editingRom.id;
452
const root = this.renderRoot;
453
454
const reqData = {
0 commit comments