fix: remove https validation from plugin url fields (#270)

main
Hezi-crypto 3 months ago committed by GitHub
parent 977f2c423a
commit 5c5b40606a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      frontend/packages/agent-ide/bot-plugin/export/src/component/file-import/plugin-info-confirm/utils.ts
  2. 6
      frontend/packages/studio/plugin-form-adapter/src/components/plugin-form-content/utils.tsx

@ -13,11 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { type UploadValue } from '@coze-common/biz-components';
import { I18n } from '@coze-arch/i18n';
import { safeJSONParse } from '@coze-arch/bot-utils';
import { type PluginMetaInfo } from '@coze-arch/bot-api/developer_api';
import { type UploadValue } from '@coze-common/biz-components';
export const formRuleList = {
name: [
@ -51,10 +51,6 @@ export const formRuleList = {
required: true,
message: I18n.t('create_plugin_modal_url1_error'),
},
{
pattern: /^(https):\/\/.+$/,
message: I18n.t('create_plugin_modal_url_error_https'),
},
],
key: [
{

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { useEffect, useState } from 'react';
import { type PluginInfoProps } from '@coze-studio/plugin-shared';
@ -66,10 +66,6 @@ export const formRuleList = {
required: true,
message: I18n.t('create_plugin_modal_url1_error'),
},
{
pattern: /^(https):\/\/.+$/,
message: I18n.t('create_plugin_modal_url_error_https'),
},
],
key: [
{

Loading…
Cancel
Save