Fix issue with data selector requiring quotes
This commit is contained in:
parent
c0f9bdd37b
commit
6f290b4d0d
|
@ -78,7 +78,7 @@ function connectElgatoStreamDeckSocket (inPort, inUUID, inRegisterEvent, inInfo,
|
|||
function initPropertyInspector(initDelay) {
|
||||
const action = actionInfo['action'];
|
||||
|
||||
$('[data-action=' + action + ']').removeClass('hidden');
|
||||
$('[data-action="' + action + '"]').removeClass('hidden');
|
||||
|
||||
Object.keys(settings).forEach(function (item) {
|
||||
let $item = $('#' + item),
|
||||
|
|
Loading…
Reference in New Issue