mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-03 11:20:16 +01:00
Add data-id attribute to the buttons (#14182)
fix https://github.com/siyuan-note/siyuan/issues/12518
This commit is contained in:
parent
853cf71d31
commit
33f8def8ce
16 changed files with 224 additions and 31 deletions
|
|
@ -84,7 +84,10 @@ export class Menu {
|
|||
}
|
||||
}
|
||||
|
||||
public addSeparator(index?: number) {
|
||||
public addSeparator(index?: number, id?: string) {
|
||||
if (id) {
|
||||
return this.addItem({id: "separator_" + id, type: "separator", index});
|
||||
}
|
||||
return this.addItem({type: "separator", index});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue