senangwebs-tour 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/swt.js +2 -1
- package/dist/swt.js.map +1 -1
- package/dist/swt.min.js +1 -1
- package/package.json +1 -1
- package/src/index.js +2 -1
package/dist/swt.js
CHANGED
|
@@ -56571,7 +56571,8 @@ void main() {
|
|
|
56571
56571
|
* @returns {Object|undefined} - Scene data or undefined if not found
|
|
56572
56572
|
*/
|
|
56573
56573
|
getSceneById(sceneId) {
|
|
56574
|
-
|
|
56574
|
+
const targetId = String(sceneId);
|
|
56575
|
+
return this.scenesArray.find((scene) => String(scene.id) === targetId);
|
|
56575
56576
|
}
|
|
56576
56577
|
|
|
56577
56578
|
/**
|