diff --git a/changelog/unreleased/bugfix-text-color-application-menu-item b/changelog/unreleased/bugfix-text-color-application-menu-item new file mode 100644 index 00000000000..99b388fe7d2 --- /dev/null +++ b/changelog/unreleased/bugfix-text-color-application-menu-item @@ -0,0 +1,6 @@ +Bugfix: The selected app item has a bad text color contrast in light mode + +We've fixed the contrast of the text color for hovered and active application menus items. + +https://github.com/owncloud/web/pull/6954 +https://github.com/owncloud/web/issues/6958 diff --git a/changelog/unreleased/enhancement-sort-default-action-first-context-menu b/changelog/unreleased/enhancement-sort-default-action-first-context-menu new file mode 100644 index 00000000000..4fd545806bc --- /dev/null +++ b/changelog/unreleased/enhancement-sort-default-action-first-context-menu @@ -0,0 +1,6 @@ +Enhancement: Show default action at the first place in context menu + +We've added the sorting of actions in the way that default file handler shows first in the context menu + +https://github.com/owncloud/web/issues/6971 +https://github.com/owncloud/web/pull/6954 \ No newline at end of file diff --git a/packages/web-app-files/src/components/FilesList/ContextActions.vue b/packages/web-app-files/src/components/FilesList/ContextActions.vue index 9ec6eb533e2..a072c70847d 100644 --- a/packages/web-app-files/src/components/FilesList/ContextActions.vue +++ b/packages/web-app-files/src/components/FilesList/ContextActions.vue @@ -130,7 +130,9 @@ export default { ...this.$_fileActions_loadExternalAppActions(this.filterParams.resources) ] - return [...fileHandlers].filter((item) => item.isEnabled(this.filterParams)) + return [...fileHandlers] + .filter((item) => item.isEnabled(this.filterParams)) + .sort((x, y) => Number(y.canBeDefault) - Number(x.canBeDefault)) }, menuItemsShare() { diff --git a/packages/web-app-text-editor/src/App.vue b/packages/web-app-text-editor/src/App.vue index edfc4b6686a..4aa684e0213 100644 --- a/packages/web-app-text-editor/src/App.vue +++ b/packages/web-app-text-editor/src/App.vue @@ -1,5 +1,5 @@