(requestId: UUID)
| 269 | const router = useRouter(); |
| 270 | |
| 271 | const open = (requestId: UUID): void => { |
| 272 | router.push({ query: { [REQUEST_DIALOG_QUERY_PARAM]: requestId } }); |
| 273 | }; |
| 274 | |
| 275 | const replaceQueryId = (id: UUID | undefined): void => { |
| 276 | const query = Object.assign({}, router.currentRoute.value.query); |
no outgoing calls
no test coverage detected