Skip to content

Commit

Permalink
Merge pull request #6182 from getkirby/fix/6169-link-field-id
Browse files Browse the repository at this point in the history
Add link field id and other default input props
  • Loading branch information
bastianallgeier authored Jan 23, 2024
2 parents c40df03 + 20eccb4 commit cadab75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions panel/src/components/Forms/Field/LinkField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@

<script>
import { props as FieldProps } from "../Field.vue";
import { props as InputProps } from "../Input.vue";
import { props as InputComponentProps } from "../Input.vue";
import { props as InputMixinProps } from "@/mixins/input.js";
import { options } from "@/mixins/props.js";
export const props = {
mixins: [FieldProps, InputProps, options],
mixins: [FieldProps, InputComponentProps, InputMixinProps, options],
props: {
value: {
default: "",
Expand Down

0 comments on commit cadab75

Please sign in to comment.