diff --git a/src/views/jobManager/editJob/systemTab.ts b/src/views/jobManager/editJob/systemTab.ts index 080df60c..4efa2cf7 100644 --- a/src/views/jobManager/editJob/systemTab.ts +++ b/src/views/jobManager/editJob/systemTab.ts @@ -39,13 +39,13 @@ export default function getSystemTab(options: JDBCOptions) { { value: `true`, description: `True`, - text: `Commit (true)`, + text: `true`, selected: options["auto commit"] === true, }, { value: `false`, description: `False`, - text: `No commit (false)`, + text: `false`, selected: options["auto commit"] === false, }, ], @@ -287,32 +287,32 @@ export default function getSystemTab(options: JDBCOptions) { [ { value: `none`, - description: `None`, - text: `No commit (none)`, + description: `None (*NC or *NONE)`, + text: `none (*NC or *NONE)`, selected: options["transaction isolation"] === `none`, }, { value: `read committed`, - description: `Read committed`, - text: `read committed`, + description: `Read committed (*CS)`, + text: `read committed (*CS)`, selected: options["transaction isolation"] === `read committed`, }, { value: `read uncommitted`, - description: `Read uncommitted`, - text: `read uncommitted`, + description: `Read uncommitted (*UR or *CHG)`, + text: `read uncommitted (*UR or *CHG)`, selected: options["transaction isolation"] === `read uncommitted`, }, { value: `repeatable read`, - description: `Repeatable read`, - text: `repeatable read`, + description: `Repeatable read (*RS or *ALL)`, + text: `repeatable read (*RS or *ALL)`, selected: options["transaction isolation"] === `repeatable read`, }, { value: `serializable`, - description: `Serializable`, - text: `serializable`, + description: `Serializable (*RR)`, + text: `serializable (*RR)`, selected: options["transaction isolation"] === `serializable`, }, ],