Debug last commit

This commit is contained in:
Adrien RENARD 2025-06-24 02:05:15 +02:00
parent c649c4e234
commit 68cd1736ee
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ const PRESETS = [
{ id: '8' , label: 'Preset #8' , name: 'Preset8' , var_name: 'pst_name_8' } { id: '8' , label: 'Preset #8' , name: 'Preset8' , var_name: 'pst_name_8' }
]; ];
class MATRIXInstance extends InstanceBase { class MatrixInstance extends InstanceBase {
constructor(internal) { constructor(internal) {
super(internal); super(internal);
Object.assign(this, { Object.assign(this, {
@ -398,4 +398,4 @@ class MATRIXInstance extends InstanceBase {
} }
} }
runEntrypoint(MATRIXInstance, []); runEntrypoint(MatrixInstance, []);