Skip to content

Commit

Permalink
fix(ViewAdmin): Add title prop to text fields
Browse files Browse the repository at this point in the history
fixes #1132

Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed May 27, 2024
1 parent eaac088 commit 215bb35
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/ViewAdmin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
:value.sync="settings['faces.batchSize']"
:label-visible="true"
:label="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~500 or more, in WASM mode ~50 is recommended)')"
:title="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~500 or more, in WASM mode ~50 is recommended)')"
@update:value="onChange" />
</p>
</NcSettingsSection>
Expand Down Expand Up @@ -109,6 +110,7 @@
:value.sync="settings['imagenet.batchSize']"
:label-visible="true"
:label="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
:title="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
@update:value="onChange" />
</p>
<p>&nbsp;</p>
Expand All @@ -123,6 +125,7 @@
:value.sync="settings['landmarks.batchSize']"
:label-visible="true"
:label="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
:title="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
@update:value="onChange" />
</p>
</NcSettingsSection>
Expand Down Expand Up @@ -152,6 +155,7 @@
:value.sync="settings['musicnn.batchSize']"
:label-visible="true"
:label="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
:title="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~100 or more, in WASM mode ~20 is recommended)')"
@update:value="onChange" />
</p>
</NcSettingsSection>
Expand Down Expand Up @@ -184,6 +188,7 @@
:value.sync="settings['movinet.batchSize']"
:label-visible="true"
:label="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~20 or more, in WASM mode ~5 is recommended)')"
:title="t('recognize', 'The number of files to process per job run (A job will be scheduled every 5 minutes; For normal operation ~20 or more, in WASM mode ~5 is recommended)')"
@update:value="onChange" />
</p>
</NcSettingsSection>
Expand Down

0 comments on commit 215bb35

Please sign in to comment.