Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Workspace/SidebarFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
(security gate — never omit `noopener noreferrer`).
2. A Documentation link (icon + label) targeting the same URL the
gear-menu Documentation entry used before runtime-shell-trim
removed it (https://mydash.app).
removed it (https://mydash.conduction.nl).

The footer itself is a stateless block; the parent
(`DashboardSwitcherSidebar`) owns the `position: sticky; bottom: 0`
Expand Down Expand Up @@ -82,7 +82,7 @@ import BookOpenVariantOutline from 'vue-material-design-icons/BookOpenVariantOut
* and the new sidebar footer link. Kept in module scope so the test
* suite can assert exact value parity with the previous gear-menu link.
*/
export const DOCS_URL = 'https://mydash.app'
export const DOCS_URL = 'https://mydash.conduction.nl'

export default {
name: 'SidebarFooter',
Expand Down
4 changes: 2 additions & 2 deletions src/components/Workspace/__tests__/SidebarFooter.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* - Sendent + Conduction logos are wrapped in `<a target="_blank"
* rel="noopener noreferrer">` (security gate; never omit the rel)
* - Documentation link points at the same URL the gear-menu Documentation
* entry used before runtime-shell-trim (https://mydash.app)
* entry used before runtime-shell-trim (https://mydash.conduction.nl)
*/

import { describe, it, expect, beforeEach, vi } from 'vitest'
Expand Down Expand Up @@ -83,7 +83,7 @@ describe('SidebarFooter', () => {
const link = wrapper.find('a.dashboard-switcher-sidebar-footer__doc-link')
expect(link.exists()).toBe(true)
expect(link.attributes('href')).toBe(DOCS_URL)
expect(link.attributes('href')).toBe('https://mydash.app')
expect(link.attributes('href')).toBe('https://mydash.conduction.nl')
expect(link.attributes('target')).toBe('_blank')
expect(link.attributes('rel')).toBe('noopener noreferrer')
})
Expand Down
2 changes: 1 addition & 1 deletion src/components/admin/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<CnSettingsSection
:name="t('mydash', 'MyDash settings')"
:description="t('mydash', 'Configure dashboard permissions and defaults')"
doc-url="https://mydash.app">
doc-url="https://mydash.conduction.nl">
<!-- Setup wizard banner (REQ-WIZ-001). Stays visible until the
admin clicks Finish in the wizard; after completion a less
prominent re-run link replaces it (REQ-WIZ-011). -->
Expand Down
Loading