File tree 2 files changed +3
-2
lines changed
packages/frontend/src/components
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 20
20
21
21
### Client
22
22
- Fix: サーバーメトリクスが90度傾いている
23
+ - Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
23
24
24
25
## 13.13.2
25
26
Original file line number Diff line number Diff line change 32
32
</path>
33
33
</svg>
34
34
-->
35
- <svg v-for =" particle in particles" :key =" particle.id" :width =" width" :height =" height" :viewBox =" `0 0 ${width} ${height}`" xmlns =" http://www.w3.org/2000/svg" style =" position : absolute ; top : -32px ; left : -32px ;" >
35
+ <!-- MFMで上位レイヤーに表示されるため、リンクをクリックできるようにstyleにpointer-events: none;を付与。 -->
36
+ <svg v-for =" particle in particles" :key =" particle.id" :width =" width" :height =" height" :viewBox =" `0 0 ${width} ${height}`" xmlns =" http://www.w3.org/2000/svg" style =" position : absolute ; top : -32px ; left : -32px ; pointer-events : none ;" >
36
37
<path
37
38
style =" transform-origin : center ; transform-box : fill-box ;"
38
39
:transform =" `translate(${particle.x} ${particle.y})`"
@@ -115,6 +116,5 @@ onUnmounted(() => {
115
116
.root {
116
117
position : relative ;
117
118
display : inline-block ;
118
- pointer-events : none ;
119
119
}
120
120
</style >
You can’t perform that action at this time.
0 commit comments