Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Toolkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
digital blueprint
Web Component Framework
Toolkit
Compare revisions
0711b12be3dc814cdbf15a0779e8f2098448835d to 749d0a7002699c5bbf84d667c301fcab73ed1b11
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dbp/web-components/toolkit
Select target project
No results found
749d0a7002699c5bbf84d667c301fcab73ed1b11
Select Git revision
Branches
advertisement
automagic
dbp-translation-component
demo
demo-file-handling
favorites-and-recent-files
icon-set-mapping
lit2
main
person-select-custom
port-i18next-parser
publish
remove-sentry
renovate/lock-file-maintenance
revert-6c632dc6
wc-part
wip-cleanup
17 results
Swap
Target
dbp/web-components/toolkit
Select target project
987FCF504483CBC8/toolkit
1 result
0711b12be3dc814cdbf15a0779e8f2098448835d
Select Git revision
Branches
advertisement
automagic
dbp-translation-component
demo
demo-file-handling
favorites-and-recent-files
icon-set-mapping
lit2
main
person-select-custom
port-i18next-parser
publish
remove-sentry
renovate/lock-file-maintenance
revert-6c632dc6
wc-part
wip-cleanup
17 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix linter warning
· 810ba692
Bekerle, Patrizio
authored
4 years ago
Unverified
810ba692
Fix linter error
· 749d0a70
Bekerle, Patrizio
authored
4 years ago
Unverified
749d0a70
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/app-shell/src/app-shell.js
+7
-6
7 additions, 6 deletions
packages/app-shell/src/app-shell.js
packages/common/utils.js
+0
-1
0 additions, 1 deletion
packages/common/utils.js
with
7 additions
and
7 deletions
packages/app-shell/src/app-shell.js
View file @
749d0a70
...
...
@@ -298,12 +298,13 @@ export class AppShell extends ScopedElementsMixin(AdapterLitElement) {
this
.
description
=
this
.
activeMetaDataText
(
"
description
"
);
// send a dbp-lang event with the language
const
event
=
new
CustomEvent
(
'
dbp-lang
'
,
{
this
.
dispatchEvent
(
new
CustomEvent
(
'
dbp-lang
'
,
{
bubbles
:
true
,
composed
:
true
,
detail
:
this
.
lang
})
;
this
.
dispatchEvent
(
event
);
})
);
break
;
case
'
metadata
'
:
{
...
...
This diff is collapsed.
Click to expand it.
packages/common/utils.js
View file @
749d0a70
...
...
@@ -57,7 +57,6 @@ export const stringListToSelect2DataArray = (list) => {
* Does generic Base64 Encoding with support for 16-bit encoded strings
*
* @see https://www.base64encoder.io/javascript/
*
* @param str
* @returns {string}
*/
...
...
This diff is collapsed.
Click to expand it.