mirror of
https://github.com/heyman/heynote.git
synced 2025-06-28 13:31:38 +02:00
Fix escaping issue in buffer selector
Buffer names and paths are now properly escaped.
This commit is contained in:
parent
a4b187ed49
commit
f1d74bb14f
@ -263,8 +263,8 @@
|
|||||||
@click="selectItem(item)"
|
@click="selectItem(item)"
|
||||||
ref="item"
|
ref="item"
|
||||||
>
|
>
|
||||||
<span class="name" v-html="item.name" />
|
<span class="name">{{ item.name }}</span>
|
||||||
<span class="path" v-html="item.folder" />
|
<span class="path">{{ item.folder }}</span>
|
||||||
<span :class="{'action-buttons':true, 'visible':actionButton > 0 && idx === selected}">
|
<span :class="{'action-buttons':true, 'visible':actionButton > 0 && idx === selected}">
|
||||||
<button
|
<button
|
||||||
v-if="actionButton > 0 && idx === selected"
|
v-if="actionButton > 0 && idx === selected"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user