We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd9bd7 commit 767c687Copy full SHA for 767c687
packages/components/src/components/hds/interactive/index.ts
@@ -16,7 +16,7 @@ export interface HdsInteractiveSignature {
16
route?: string;
17
models?: unknown[];
18
model?: unknown;
19
- query?: Record<string, string>;
+ query?: Record<string, unknown>;
20
'current-when'?: string | boolean;
21
replace?: boolean;
22
};
packages/components/src/helpers/hds-link-to-query.ts
@@ -20,8 +20,8 @@ import { helper } from '@ember/component/helper';
// don't remove until we drop support for ember 3.27 and 3.28
export function hdsLinkToQuery([query]: [
23
- Record<string, string> | undefined,
24
-]): Record<string, string> {
+ Record<string, unknown> | undefined,
+]): Record<string, unknown> {
25
return query ?? {};
26
}
27
0 commit comments