Skip to content

Commit 68eb083

Browse files
author
Arvid Paeglit
committed
clean up of status message update
1 parent 5ef2c0d commit 68eb083

4 files changed

Lines changed: 12 additions & 10 deletions

File tree

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/deepcode/DeepCodeExtension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ class DeepCodeExtension extends DeepCodeLib implements ExtensionInterface {
151151
}
152152

153153
onSupportedFilesLoaded(data: ISupportedFiles | null) {
154-
this.updateStatus(DEEPCODE_ANALYSIS_STATUS.FILTERS, !!data ? 'Loaded extentions' : 'Loading supported extensions');
154+
const msg = !!data ? 'Ignore rules loading' : 'Loading';
155+
156+
this.updateStatus(DEEPCODE_ANALYSIS_STATUS.FILTERS, msg);
155157

156158
// Setup file watcher
157159
if (!this.filesWatcher && data) {

src/deepcode/constants/views.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const DEEPCODE_MODE_CODES = {
2626
};
2727

2828
export const DEEPCODE_ANALYSIS_STATUS = {
29-
FILTERS: 'LOADING SUPPORTED extentions',
29+
FILTERS: 'Supported extentions',
3030
COLLECTING: 'Collecting files',
3131
BUNDLING: 'Creating file bundles',
3232
UPLOADING: 'Uploading files',

yalc.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "v1",
33
"packages": {
44
"@deepcode/tsc": {
5-
"signature": "10fcd41e0a669f72ec439c6f6f4d22c8",
5+
"signature": "59c01ba9310ca95759da182beb43a94e",
66
"file": true,
77
"replaced": "^2.0.0"
88
}

0 commit comments

Comments
 (0)