mirror of
https://github.com/olcubo/obsidian-cubox.git
synced 2026-07-22 05:43:25 +00:00
chore: removing debug logs, fixing UI text casing
This commit is contained in:
parent
183d3a1588
commit
83c4ed582b
2 changed files with 1 additions and 5 deletions
|
|
@ -91,9 +91,6 @@ export class CuboxSyncSettingTab extends PluginSettingTab {
|
|||
|
||||
containerEl.empty();
|
||||
|
||||
// 连接设置部分
|
||||
new Setting(containerEl).setName('Connect obsidian to your Cubox').setHeading();
|
||||
|
||||
// 修改域名选择下拉框
|
||||
new Setting(containerEl)
|
||||
.setName('Cubox server domain')
|
||||
|
|
@ -505,7 +502,7 @@ export class CuboxSyncSettingTab extends PluginSettingTab {
|
|||
|
||||
descEl.appendChild(
|
||||
createEl('a', {
|
||||
text: 'Extension Settings',
|
||||
text: 'Extension settings',
|
||||
href: url,
|
||||
attr: {
|
||||
target: '_blank',
|
||||
|
|
|
|||
|
|
@ -154,7 +154,6 @@ export default class CuboxSyncPlugin extends Plugin {
|
|||
const itemId = this.app.metadataCache.getFileCache(file)?.frontmatter?.id
|
||||
if (itemId && itemId === article.id) {
|
||||
foundMatchingId = true;
|
||||
console.log('found matching id', itemId, article.id);
|
||||
}
|
||||
|
||||
if (foundMatchingId) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue