Adjusted settings labels.

This commit is contained in:
Christian Bastian
2024-09-21 20:08:19 -04:00
parent ef89bcf2db
commit 1ddba41cc0

View File

@@ -4900,11 +4900,11 @@ class SettingsView {
$el('h2', ['Random Tag Generator']),
$select({
$: (el) => (settings['tag-generator-sampler-method'] = el),
textContent: 'Default sampling method',
textContent: 'Sampling method',
options: ['Frequency', 'Uniform'],
}),
$el('label', [
'Default count',
'Generation count',
$el('input', {
$: (el) => (settings['tag-generator-count'] = el),
type: 'number',
@@ -4914,7 +4914,7 @@ class SettingsView {
}),
]),
$el('label', [
'Default minimum threshold',
'Minimum frequency threshold',
$el('input', {
$: (el) => (settings['tag-generator-threshold'] = el),
type: 'number',