Skip to content

Commit

Permalink
Fix bug where entity types created via Modal don't appear in combobox (
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon authored Oct 6, 2023
1 parent f65e6a5 commit 3870191
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import SearchUtils from "@/search/utils"
import EntityApi from "@/entity/api"
export default {
name: "EntityCombobox",
name: "EntityFilterCombobox",
props: {
value: {
Expand All @@ -64,7 +64,7 @@ export default {
},
label: {
type: String,
default: "Add Entity Types",
default: "Add Entities",
},
model: {
type: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default {
},
label: {
type: String,
default: "Add Entity Types",
default: "Add Entity Type Filters",
},
model: {
type: String,
Expand Down Expand Up @@ -198,7 +198,7 @@ export default {
...filterOptions,
filters: {
project: [this.project],
scope: ["multiple"],
scope: ["multiple", "single"],
},
}
filterOptions = SearchUtils.createParametersFromTableOptions({ ...filterOptions })
Expand Down
1 change: 1 addition & 0 deletions src/dispatch/static/dispatch/src/signal/NewEditDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@
v-model="entity_types"
:project="project"
:signalDefinition="selected"
label="Add Entity Types"
/>
</v-card-text>
</v-card>
Expand Down

0 comments on commit 3870191

Please sign in to comment.