Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ module.exports = {
'jsdoc/require-jsdoc': 'off',
'jsdoc/tag-lines': 'off',
'vue/first-attribute-linebreak': 'off',
'import/extensions': 'off'
'import/extensions': 'off',
'import/no-unresolved': ['error', { ignore: ['\\?raw'] }],
'vue/no-v-model-argument': 'off',
}
}
4 changes: 2 additions & 2 deletions .nextcloudignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.vscode
.php-cs-fixer.*
/.codecov.yml
/.eslintrc.js
/.eslintrc.cjs
/.gitattributes
/.gitignore
/.l10nignore
Expand All @@ -31,7 +31,7 @@
/psalm.xml
/pyproject.toml
/renovate.json
/stylelint.config.js
/stylelint.config.cjs
/webpack.config.js
/webpack.js
tests
1 change: 1 addition & 0 deletions lib/Dashboard/GitlabWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public function load(): void {
$userConfig['widget_projects'] = [];
$userConfig['widget_groups'] = [];
}
$userConfig['url'] = $this->config->getUserUrl($this->userId);

$this->initialStateService->provideInitialState('user-config', $userConfig);
Util::addScript(Application::APP_ID, Application::APP_ID . '-dashboard');
Expand Down
Loading
Loading