Skip to content

Commit

Permalink
Устранены ошибки инициализации проекта в плагине IDEA
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiontik committed Jun 10, 2024
1 parent cfc7f58 commit 58f1542
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
13 changes: 1 addition & 12 deletions public/documentation/docs/manual/docs/bpmn.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,4 @@ docs:

Результат:

![BPMN](@document/dochub.example.bpmn.analyse)

# BPMN2
test

## trst

### test

#### test

##### test
![BPMN](@document/dochub.example.bpmn.analyse)
10 changes: 6 additions & 4 deletions src/frontend/storage/gitlab.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ export default {
// eslint-disable-next-line no-console
console.info('MEMORY STATUS ', window?.performance?.memory);
};

storageManager.onStartReload = () => {
rulesContext && rulesContext.stop();
tickCounter = Date.now();
Expand Down Expand Up @@ -251,8 +252,8 @@ export default {

item.description = `${error.toString()}\n`;
errors.package.items.push(item);
} else if (!errors.count && (data.uri === consts.plugin.ROOT_MANIFEST || action === 'file-system')) {
context.commit('setNoInited', true);
} else if (data.uri === consts.plugin.ROOT_MANIFEST || action === 'file-system') {
context.commit('setNoInited', errors.count === 1);
} else {
const item = {
uid,
Expand Down Expand Up @@ -317,9 +318,10 @@ export default {
tickCounter = Date.now();
// eslint-disable-next-line no-console
console.info('>>>>>> ON CHANGED SOURCES <<<<<<<<<<', changes);
if (storageManager.onChange)
if (storageManager.onChange) {
storageManager.onStartReload();
storageManager.onChange(Object.keys(changes));
else
} else
context.dispatch('reloadAll');

for (const source in changes) {
Expand Down

0 comments on commit 58f1542

Please sign in to comment.