web: fix syntax error

This commit is contained in:
Tobias Mueller 2023-10-17 20:01:41 +02:00
parent 87c420e2de
commit 9466707119
1 changed files with 5 additions and 3 deletions

View File

@ -292,7 +292,8 @@ function handleSimSwap(ev) {
callBlueMerle("random-imei").then(
function(res) {
dlg.appendChild(
E('div', { 'class': 'text'}, [
E('div', { 'class': 'text'},
[
E('p', { 'class': 'text'},
_("IMEI set:") + " " + res
),
@ -300,9 +301,10 @@ function handleSimSwap(ev) {
_("Please shutdown the device and go to another place before booting")
),
E('button', { 'class': 'btn cbi-button-positive', 'click': handleShutdown, 'disabled': isReadonlyView },
[ _('Shutdown…') ])
[ _('Shutdown…') ]
)
]
]
)
)
}
).catch(