Skip to content

Commit

Permalink
Fix workflow jsonforms warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hvangeffen committed Apr 25, 2024
1 parent 4ae9399 commit ed184ba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/workflows/WorkflowsControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/>
</v-badge>

<v-dialog v-show="!selectBbox" width="500" v-model="workflowDialog">
<v-dialog width="500" v-model="workflowDialog">
<v-card>
<v-card-title>Workflow</v-card-title>
<v-container>
Expand Down Expand Up @@ -48,7 +48,7 @@
:schema="formSchema"
:uischema="formUISchema"
:data="data"
:renderers="vuetifyRenderers"
:renderers="Object.freeze(vuetifyRenderers)"
:ajv="undefined"
validation-mode="NoValidation"
:config="JsonFormsConfig"
Expand Down Expand Up @@ -105,7 +105,6 @@ const props = withDefaults(defineProps<Props>(), {
const currentWorkflow = ref<SecondaryWorkflowGroupItem | null>(null)
const workflowDialog = ref(false)
const selectBbox = ref(false)
const errorDialog = ref(false)
const errorMessage = ref<string>()
const data = ref()
Expand Down

0 comments on commit ed184ba

Please sign in to comment.