Skip to content

Commit

Permalink
Replacing deprecated props (#3971)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 authored Nov 11, 2023
1 parent 0f5893b commit 6aa1620
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<v-card-text>
Entity types are used to extract useful metadata out of signals. Define either a
RegEx or JSON Path expression to pull entities out of a signals raw json.
<v-radio-group label="Type" v-model="type" row>
<v-radio-group label="Type" v-model="type" inline>
<v-radio label="Regular Expression" value="regex" />
<v-radio label="JSON Path" value="json" />
</v-radio-group>
Expand Down
4 changes: 2 additions & 2 deletions src/dispatch/static/dispatch/src/entity_type/NewEditSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
auto-grow
name="Description"
/>
<v-radio-group v-model="scope" label="Scope" row>
<v-radio-group v-model="scope" label="Scope" inline>
<v-tooltip max-width="250px" location="left">
<template #activator="{ props }">
<v-radio v-bind="props" label="Multiple" value="multiple" />
Expand Down Expand Up @@ -84,7 +84,7 @@
<v-card-text>
Entity types are used to extract useful metadata out of signals. Define either a RegEx or
JSON Path expression to pull entities out of a signals raw json.
<v-radio-group label="Type" v-model="type" row>
<v-radio-group label="Type" v-model="type" inline>
<v-radio label="Regular Expression" value="regex" />
<v-radio label="JSON Path" value="json" />
</v-radio-group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<v-radio-group
label="Action"
v-model="action"
row
inline
class="justify-right"
name="Action"
:rules="[rules.required]"
Expand Down

0 comments on commit 6aa1620

Please sign in to comment.