File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed
src/views/jobManager/editJob Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
- import { JDBCOptions } from "../../../connection/types" ;
2
- import { loadBase } from "../../../base" ;
1
+
2
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src/types" ;
3
+ import { getBase } from "../../../base" ;
3
4
4
5
export default function getFormatTab ( options : JDBCOptions ) {
5
- const base = loadBase ( ) ;
6
+ const base = getBase ( ) ;
6
7
const tab = base . customUI ( ) ;
7
8
8
9
tab
Original file line number Diff line number Diff line change 1
1
import { loadBase } from "../../../base" ;
2
- import { JDBCOptions } from "../../../connection /types" ;
2
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src /types" ;
3
3
import { ComplexTab } from "@halcyontech/vscode-ibmi-types/api/CustomUI" ;
4
4
5
5
import getPerfTab from "./perfTab" ;
Original file line number Diff line number Diff line change 1
1
import { formatDescription } from "." ;
2
2
import { loadBase } from "../../../base" ;
3
- import { JDBCOptions } from "../../../connection /types" ;
3
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src /types" ;
4
4
5
5
const dataTruncationText = `
6
6
Specifies whether truncation of character data generates warnings and exceptions. When this property is "true", the following apply:
Original file line number Diff line number Diff line change 1
1
import { loadBase } from "../../../base" ;
2
- import { JDBCOptions } from "../../../connection /types" ;
2
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src /types" ;
3
3
4
4
export default function getPerfTab ( options : JDBCOptions ) {
5
5
const base = loadBase ( ) ;
Original file line number Diff line number Diff line change 1
1
import { loadBase } from "../../../base" ;
2
- import { JDBCOptions } from "../../../connection /types" ;
2
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src /types" ;
3
3
4
4
export default function getSortTab ( options : JDBCOptions ) {
5
5
const base = loadBase ( ) ;
Original file line number Diff line number Diff line change 1
- import { JDBCOptions } from "../../../connection /types" ;
2
- import { getInstance , loadBase } from "../../../base" ;
1
+ import { JDBCOptions } from "@ibm/mapepire-js/dist/src /types" ;
2
+ import { getBase , getInstance , loadBase } from "../../../base" ;
3
3
import { formatDescription } from "." ;
4
4
5
5
const autoCommitText = `
@@ -24,7 +24,7 @@ an independent ASP or the system default database. The following criteria determ
24
24
` ;
25
25
26
26
export default function getSystemTab ( options : JDBCOptions ) {
27
- const base = loadBase ( ) ;
27
+ const base = getBase ( ) ;
28
28
const tab = base . customUI ( ) ;
29
29
const connection = getInstance ( ) . getConnection ( )
30
30
You can’t perform that action at this time.
0 commit comments