link url 里面的变量不自动转义
This commit is contained in:
parent
f226fc2444
commit
d3027b421a
|
@ -198,7 +198,11 @@ export default class Page extends React.Component<PageProps> {
|
||||||
}
|
}
|
||||||
|
|
||||||
env.jumpTo(
|
env.jumpTo(
|
||||||
filter((action.to || action.url || action.link) as string, ctx),
|
filter(
|
||||||
|
(action.to || action.url || action.link) as string,
|
||||||
|
ctx,
|
||||||
|
'| raw'
|
||||||
|
),
|
||||||
action,
|
action,
|
||||||
ctx
|
ctx
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue