Skip to content

Commit

Permalink
Add catalog helper
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-aderr committed Sep 19, 2024
1 parent e6ea924 commit 146cba8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mlte/frontend/nuxt-app/components/TestCatalog/entry-edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
:error="formErrors.catalog"
@change="formErrors.catalog = false"
>
<template #label> Catalog </template>
<template #label>
Catalog
<InfoIcon>
Catalog where test example will be stored.
</InfoIcon>
</template>
<template #error-message>A catalog must be selected</template>
</UsaSelect>
<UsaTextInput
Expand Down Expand Up @@ -192,7 +197,7 @@ if (catalogList.value) {
if (!catalog.read_only) {
catalogOptions.value.push({
value: catalog.id,
text: catalog.id,
text: catalog.id + " (" + catalog.type.replaceAll("_", " ") + ")",
});
}
});
Expand Down

0 comments on commit 146cba8

Please sign in to comment.