diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fb1196b7b..3b1eb5c8a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ on: branches: - main -# cancel in-progress runs on new commits to same PR (gitub.event.number) +# cancel in-progress runs on new commits to same PR (github.event.number) concurrency: group: ${{ github.workflow }}-${{ github.event.number || github.sha }} cancel-in-progress: true diff --git a/.storybook/.public/mockServiceWorker.js b/.storybook/.public/mockServiceWorker.js index af42f4351e..aac870bd79 100644 --- a/.storybook/.public/mockServiceWorker.js +++ b/.storybook/.public/mockServiceWorker.js @@ -123,7 +123,7 @@ async function handleRequest(event, requestId, requestInterceptedAt) { const response = await getResponse(event, client, requestId, requestInterceptedAt) // Send back the response clone for the "response:*" life-cycle events. - // Ensure MSW is active and ready to handle the message, otherwise + // Ensure MSW is active and ready to handle the message; otherwise, // this message will pend indefinitely. if (client && activeClientIds.has(client.id)) { const serializedRequest = await serializeRequest(requestCloneForEvents) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ed7189c6ca..74f9d19243 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -232,7 +232,7 @@ If you're working on admin features (org management, package access controls, op pnpm mock-connector ``` -This starts a mock connector server pre-populated with sample data (orgs, teams, members, packages). No npm login is required — operations succeed immediately without making real npm CLI calls. +This starts a mock connector server prepopulated with sample data (orgs, teams, members, packages). No npm login is required — operations succeed immediately without making real npm CLI calls. The mock connector prints a connection URL to the terminal, just like the real connector. Click it (or paste the token manually) to connect the UI. @@ -242,7 +242,7 @@ The mock connector prints a connection URL to the terminal, just like the real c pnpm mock-connector # default: port 31415, user "mock-user", sample data pnpm mock-connector --port 9999 # custom port pnpm mock-connector --user alice # custom username -pnpm mock-connector --empty # start with no pre-populated data +pnpm mock-connector --empty # start with no prepopulated data ``` **Default sample data:** diff --git a/app/components/Chart/SplitSparkline.vue b/app/components/Chart/SplitSparkline.vue index 14fc4f0786..e63ea4e4f5 100644 --- a/app/components/Chart/SplitSparkline.vue +++ b/app/components/Chart/SplitSparkline.vue @@ -101,7 +101,7 @@ const configs = computed(() => { ? Array.from(new Set([...(unit.dashIndices ?? []), lastIndex])) : unit.dashIndices - // Ensure we loop through available palette colours when the series count is higher than the avalable palette + // Ensure we loop through available palette colours when the series count is higher than the available palette const fallbackColor = palette[i] ?? palette[i % palette.length] ?? palette[0]! const seriesColor = unit.color ?? fallbackColor const lightenedSeriesColor: string = unit.color diff --git a/app/components/Header/MobileMenu.client.vue b/app/components/Header/MobileMenu.client.vue index 0ab5cff0b7..c8f013c5d1 100644 --- a/app/components/Header/MobileMenu.client.vue +++ b/app/components/Header/MobileMenu.client.vue @@ -209,7 +209,7 @@ onUnmounted(deactivate)