Skip to content

Commit 922672d

Browse files
committed
Improve setting name
1 parent 3ef3770 commit 922672d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,8 +785,8 @@
785785
}
786786
}
787787
},
788-
"objectscript.serverSourceControl.disableActionTriggers": {
789-
"description": "Prevent server-side source control action triggers from firing.",
788+
"objectscript.serverSourceControl.disableOtherActionTriggers": {
789+
"description": "Prevent server-side source control 'other action' triggers from firing.",
790790
"type": "boolean",
791791
"scope": "resource"
792792
},

src/commands/studio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ export async function _contextMenu(sourceControl: boolean, node: PackageNode | C
459459

460460
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
461461
export async function fireOtherStudioAction(action: OtherStudioAction, uri?: vscode.Uri, userAction?): Promise<void> {
462-
if (vscode.workspace.getConfiguration("objectscript.serverSourceControl", uri)?.get("disableActionTriggers")) {
462+
if (vscode.workspace.getConfiguration("objectscript.serverSourceControl", uri)?.get("disableOtherActionTriggers")) {
463463
return;
464464
}
465465
const studioActions = new StudioActions(uri);

0 commit comments

Comments
 (0)