mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 09:35:37 -05:00
fix off by one in query messages (#2446)
This commit is contained in:
@@ -274,7 +274,8 @@ export default class QueryRunner {
|
||||
this.batchSets[batch.id] = batch;
|
||||
|
||||
let message = {
|
||||
message: nls.localize('query.message.startQuery', 'Started executing query at Line {0}', batch.selection.startLine),
|
||||
// account for index by 1
|
||||
message: nls.localize('query.message.startQuery', 'Started executing query at Line {0}', batch.selection.startLine + 1),
|
||||
time: new Date(batch.executionStart).toLocaleTimeString(),
|
||||
selection: batch.selection,
|
||||
isError: false
|
||||
|
||||
Reference in New Issue
Block a user