1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-13 22:28:14 +00:00

semicolon

Co-Authored-By: Otto Winter <otto@otto-winter.com>
This commit is contained in:
gitolicious 2019-06-03 21:26:21 +02:00 committed by GitHub
parent c4849c10ab
commit 835ec9d30c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -714,7 +714,7 @@ document.querySelectorAll(".action-edit").forEach((btn) => {
fetch(`./edit?configuration=${activeEditorConfig}`, {credentials: "same-origin"})
.then(res => res.text()).then(response => {
editor.setValue(response, -1);
editor.setOption('readOnly', false)
editor.setOption('readOnly', false);
});
modalInstance.open();