mirror of
https://github.com/youngmoss/obsidian-backgroundset.git
synced 2026-07-22 05:34:19 +00:00
修复引用:将imageAdressList的访问从实例变量改为插件实例变量
This commit is contained in:
parent
a0d4b1a7ad
commit
f20918ed4a
1 changed files with 1 additions and 1 deletions
2
main.ts
2
main.ts
|
|
@ -117,7 +117,7 @@ class BackgroundSettingTab extends PluginSettingTab {
|
|||
// 显示图片编号(以网格形式排列)
|
||||
const imageListContainer = containerEl.createEl('div', { cls: 'image-grid' });
|
||||
|
||||
this.imageAdressList.forEach((imagePath, index) => {
|
||||
this.plugin.imageAdressList.forEach((imagePath, index) => {
|
||||
const imgContainer = imageListContainer.createDiv({ cls: 'image-item' });
|
||||
|
||||
// 添加缩略图
|
||||
|
|
|
|||
Loading…
Reference in a new issue