We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79bcc67 commit 48b694dCopy full SHA for 48b694d
src/settings.ts
@@ -510,7 +510,7 @@ export class SettingsTab extends PluginSettingTab {
510
new Setting(containerEl)
511
.setName('Header properties fields')
512
.setDesc(
513
- 'You can set custom weights for values of header properties (e.g. "keywords").'
+ 'You can set custom weights for values of header properties (e.g. "keywords"). Weights under 1.0 will downrank the results.'
514
)
515
516
for (let i = 0; i < settings.weightCustomProperties.length; i++) {
@@ -528,7 +528,7 @@ export class SettingsTab extends PluginSettingTab {
528
})
529
530
.addSlider(cb => {
531
- cb.setLimits(1, 5, 0.1)
+ cb.setLimits(0.1, 5, 0.1)
532
.setValue(item.weight)
533
.setDynamicTooltip()
534
.onChange(async v => {
0 commit comments