Merge pull request #3710 from meichthys/patch-3

Capitalize Ribbon Widget titles for consistency
This commit is contained in:
zadam 2023-03-14 21:12:38 +01:00 committed by GitHub
commit d8e9086bde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export default class InheritedAttributesWidget extends NoteContextAwareWidget {
getTitle() { getTitle() {
return { return {
show: !this.note.isLaunchBarConfig(), show: !this.note.isLaunchBarConfig(),
title: "Inherited attributes", title: "Inherited Attributes",
icon: "bx bx-list-plus" icon: "bx bx-list-plus"
}; };
} }

View File

@ -48,7 +48,7 @@ export default class OwnedAttributeListWidget extends NoteContextAwareWidget {
getTitle() { getTitle() {
return { return {
show: !this.note.isLaunchBarConfig(), show: !this.note.isLaunchBarConfig(),
title: "Owned attributes", title: "Owned Attributes",
icon: "bx bx-list-check" icon: "bx bx-list-check"
}; };
} }