This is an automated email from the ASF dual-hosted git repository.

robin0716 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/answer-plugins.git


The following commit(s) were added to refs/heads/main by this push:
     new 44d5932  fix: correct registration mode property in editor stacks
44d5932 is described below

commit 44d5932f9b9393adf445a428fc935b4e6da7dd56
Author: robin <[email protected]>
AuthorDate: Thu Dec 25 12:02:55 2025 +0800

    fix: correct registration mode property in editor stacks
---
 editor-stacks/index.ts | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/editor-stacks/index.ts b/editor-stacks/index.ts
index bcb0b9f..9ffb455 100644
--- a/editor-stacks/index.ts
+++ b/editor-stacks/index.ts
@@ -17,17 +17,16 @@
  * under the License.
  */
 
-import Component from './Component';
-import i18nConfig from './i18n';
-import info from './info.yaml';
+import Component from "./Component";
+import i18nConfig from "./i18n";
+import info from "./info.yaml";
 
 export default {
   info: {
     type: info.type,
     slug_name: info.slug_name,
-    mode: info.mode,
+    registrationMode: info.registrationMode,
   },
   component: Component,
   i18nConfig,
 };
-

Reply via email to