Fix escaping issue in buffer selector

Buffer names and paths are now properly escaped.
This commit is contained in:
Jonatan Heyman 2025-03-03 13:00:02 +01:00
parent a4b187ed49
commit f1d74bb14f

View File

@ -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"