From 66877d7694cc8d2fc90271610ff2fafbf2d3553e Mon Sep 17 00:00:00 2001 From: MikeZeDev Date: Thu, 17 Aug 2023 19:02:20 +0000 Subject: [PATCH] FIX Hiperdex domain (#6148) As they are starting to use other domains than the 2 in the option, allow the user to type the good one instead --- src/web/mjs/connectors/Hiperdex.mjs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/web/mjs/connectors/Hiperdex.mjs b/src/web/mjs/connectors/Hiperdex.mjs index 14adb35688c..97be502b23e 100644 --- a/src/web/mjs/connectors/Hiperdex.mjs +++ b/src/web/mjs/connectors/Hiperdex.mjs @@ -10,14 +10,9 @@ export default class Hiperdex extends WordPressMadara { this.config = { url: { label: 'URL', - description: 'This website changes between those two URL regularly.\n Please select the one to use', - input: 'select', - options: [ - { value: 'https://1sthiperdex.com', name: '1sthiperdex.com' }, - { value: 'https://hiperdex.com', name: 'hiperdex.com' }, - ], - value: 'https://1sthiperdex.com' - + description: 'This website changes their URL regularly.\nThis is the last known URL which can also be manually set by the user.', + input: 'text', + value: 'https://hiperdex.xyz' } }; }