Capitalize action text for query history (#7512)

This commit is contained in:
Charles Gagnon
2019-10-04 14:14:05 -07:00
committed by GitHub
parent b23e577ccc
commit bcb5384639

View File

@@ -128,10 +128,10 @@ export class ToggleQueryHistoryCaptureAction extends Action {
private setClassAndLabel(enabled: boolean) {
if (enabled) {
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 {
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");
}
}
}