mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-11 05:24:45 -05:00
Added support for EDB Job Scheduler. #7098
This commit is contained in:
@@ -27,10 +27,10 @@ export function getHelpUrl(base_path, file, version) {
|
||||
return url + file;
|
||||
}
|
||||
|
||||
export function getEPASHelpUrl(version) {
|
||||
export function getEPASHelpUrl(version, epasURL=null) {
|
||||
let major = Math.floor(version / 10000),
|
||||
minor = Math.floor(version / 100) - (major * 100),
|
||||
epasHelp11Plus = 'https://www.enterprisedb.com/docs/epas/$VERSION$/epas_compat_sql/',
|
||||
epasHelp11Plus = epasURL??'https://www.enterprisedb.com/docs/epas/$VERSION$/epas_compat_sql/',
|
||||
epasHelp = 'https://www.enterprisedb.com/docs/epas/$VERSION$/',
|
||||
url = '';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user