mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Capitalize action text for query history (#7512)
This commit is contained in:
@@ -128,10 +128,10 @@ export class ToggleQueryHistoryCaptureAction extends Action {
|
|||||||
private setClassAndLabel(enabled: boolean) {
|
private setClassAndLabel(enabled: boolean) {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
this.class = 'toggle-query-history-capture-action codicon-pause';
|
this.class = 'toggle-query-history-capture-action codicon-pause';
|
||||||
this.label = localize('queryHistory.disableCapture', "Pause Query History capture");
|
this.label = localize('queryHistory.disableCapture', "Pause Query History Capture");
|
||||||
} else {
|
} else {
|
||||||
this.class = 'toggle-query-history-capture-action codicon-play';
|
this.class = 'toggle-query-history-capture-action codicon-play';
|
||||||
this.label = localize('queryHistory.enableCapture', "Start Query History capture");
|
this.label = localize('queryHistory.enableCapture', "Start Query History Capture");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user