Update website URL in widget configuration#1
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the website URL in the widget configuration from the old developers documentation site to the new help documentation site, migrating from https://developers.vika.cn/script/introduction/ to https://help.vika.cn/docs/guide/intro-widget-script/.
- Updates the widget's website reference to point to the new help documentation location
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "en-US": "Reduce the time spent on repetitive tasks by writing short scripts for quick customization capabilities" | ||
| }, | ||
| "website": "https://developers.vika.cn/script/introduction/", | ||
| "website": "https://help.vika.cn/docs/guide/intro-widget-script/", |
There was a problem hiding this comment.
The website URL has been updated in this configuration file, but the same URL path (developers.vika.cn/script/introduction/) is still referenced in settings.json as "help_document_url". This creates an inconsistency where the widget configuration points to the new help documentation location while the application code still references the old developers documentation.
The settings.json file is used by the DocumentPanel component (src/components/document_panel/document_panel.tsx) to open documentation and embed it in an iframe. Consider updating settings.json to use the same new URL to maintain consistency across the application.
| "website": "https://help.vika.cn/docs/guide/intro-widget-script/", | |
| "website": "https://developers.vika.cn/script/introduction/", |
No description provided.