From bca7a435eddc62e8479e4a25c50dcca30b3adb79 Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Sat, 6 Dec 2025 13:24:58 -0800 Subject: [PATCH] fix: Button color and default ordering (#7199) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Small fixes for the button and Modal sorting. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7199-fix-Button-color-and-default-ordering-2c16d73d3650812a8a08f8e8fcd7fd55) by [Unito](https://www.unito.io) --- src/platform/assets/composables/useAssetBrowser.ts | 2 +- .../components/form/dropdown/FormDropdownMenuFilter.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/platform/assets/composables/useAssetBrowser.ts b/src/platform/assets/composables/useAssetBrowser.ts index 28d32a900..e5913e94a 100644 --- a/src/platform/assets/composables/useAssetBrowser.ts +++ b/src/platform/assets/composables/useAssetBrowser.ts @@ -63,7 +63,7 @@ export function useAssetBrowser( const searchQuery = ref('') const selectedCategory = ref('all') const filters = ref({ - sortBy: 'name-asc', + sortBy: 'recent', fileFormats: [], baseModels: [] }) diff --git a/src/renderer/extensions/vueNodes/widgets/components/form/dropdown/FormDropdownMenuFilter.vue b/src/renderer/extensions/vueNodes/widgets/components/form/dropdown/FormDropdownMenuFilter.vue index 90d2565a6..3c6dff488 100644 --- a/src/renderer/extensions/vueNodes/widgets/components/form/dropdown/FormDropdownMenuFilter.vue +++ b/src/renderer/extensions/vueNodes/widgets/components/form/dropdown/FormDropdownMenuFilter.vue @@ -43,8 +43,8 @@ const singleFilterOption = computed(() => filterOptions.length === 1)