From ce57e5b0ee7ec8ffbd3236dcc862133c6f6d1e81 Mon Sep 17 00:00:00 2001 From: Salma Alam-Naylor Date: Sat, 31 Jan 2026 16:03:37 +0000 Subject: [PATCH 1/3] Align header icon --- app/components/AppHeader.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/AppHeader.vue b/app/components/AppHeader.vue index d814ce559b..d35100fa12 100644 --- a/app/components/AppHeader.vue +++ b/app/components/AppHeader.vue @@ -34,7 +34,7 @@ onKeyStroke(',', e => { >
-
+
Date: Sat, 31 Jan 2026 16:29:44 +0000 Subject: [PATCH 2/3] Remove disabled reason from UI --- app/components/PackageListToolbar.vue | 4 +--- shared/types/preferences.ts | 16 ---------------- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/app/components/PackageListToolbar.vue b/app/components/PackageListToolbar.vue index ede2444c6a..cf00f08613 100644 --- a/app/components/PackageListToolbar.vue +++ b/app/components/PackageListToolbar.vue @@ -62,7 +62,6 @@ const availableSortKeys = computed(() => { return SORT_KEYS.filter(k => !k.searchOnly || k.key === 'relevance').map(k => Object.assign({}, k, { disabled: k.key !== 'relevance', - disabledReason: k.key !== 'relevance' ? 'Coming soon' : undefined, }), ) } @@ -162,8 +161,7 @@ function getSortKeyLabelKey(key: SortKey): string { :value="keyConfig.key" :disabled="keyConfig.disabled" > - {{ $t(getSortKeyLabelKey(keyConfig.key)) - }}{{ keyConfig.disabled ? ` (${$t('filters.columns.coming_soon')})` : '' }} + {{ $t(getSortKeyLabelKey(keyConfig.key)) }}
Date: Sat, 31 Jan 2026 17:13:49 +0000 Subject: [PATCH 3/3] Add guidance on file formatting to contributing.md --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d2e8d2b18..858e295afb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -105,6 +105,12 @@ The connector will check your npm authentication, generate a connection token, a ## Code style +When committing changes, try to keep an eye out for unintended formatting updates. These can make a pull request look noisier than it really is and slow down the review process. Sometimes IDEs automatically reformat files on save, which can unintentionally introduce extra changes. + +To help with this, the project uses `oxfmt` to handle formatting via a pre-commit hook. The hook will automatically reformat files when needed. If something can’t be fixed automatically, it will let you know what needs to be updated before you can commit. + +If you want to get ahead of any formatting issues, you can also run `pnpm lint:fix` before committing to fix formatting across the whole project. + ### Typescript - We care about good types – never cast things to `any` 💪