#324 - Fix for the framework selection

This commit is contained in:
Elio Struyf
2022-04-21 12:23:37 +02:00
parent cd19cec4f7
commit e64c4fc0f8
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@
- Fix in decode base64 uploaded video files
- Fix for a lightbox on other types of documents (pdf, etc.)
- Fix for hiding the image preview on slide-over for none image documents
- [#324](https://github.com/estruyf/vscode-front-matter/issues/324): Fix for the framework selection on the welcome screen
## [7.1.2] - 2022-04-11
+3 -1
View File
@@ -12,7 +12,7 @@ import { format } from 'date-fns';
import { Dashboard } from './Dashboard';
import { parseWinPath } from '../helpers/parseWinPath';
import { MediaHelpers } from '../helpers/MediaHelpers';
import { MediaListener, PagesListener } from '../listeners/dashboard';
import { MediaListener, PagesListener, SettingsListener } from '../listeners/dashboard';
import { DEFAULT_FILE_TYPES } from '../constants/DefaultFileTypes';
import { Telemetry } from '../helpers/Telemetry';
@@ -127,6 +127,8 @@ export class Folders {
Notifications.info(`Folder registered`);
Telemetry.send(TelemetryEvent.registerFolder);
SettingsListener.getSettings();
}
}
@@ -65,5 +65,7 @@ export class SettingsListener extends BaseListener {
Settings.update(SETTING_CONTENT_STATIC_FOLDER, "", true);
}
}
SettingsListener.getSettings();
}
}