Skip to content

Commit

Permalink
fix: disable popup options required
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Mar 13, 2023
1 parent 2313f6e commit c98a3e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/v-mapbox/markers/VMarker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
default: () => ({} as MarkerOptions),
required: true,
},
popupOptions: {
type: Object as PropType<PopupOptions>,
default: () => ({} as PopupOptions),
required: true,
},
coordinates: {
type: [Object, Array] as PropType<LngLatLike>,
default: () => ({}),
required: true,
},
popupOptions: {
type: Object as PropType<PopupOptions>,
default: () => ({} as PopupOptions),
required: false,
},
cursor: {
type: String as PropType<string>,
default: 'pointer',
Expand Down

0 comments on commit c98a3e9

Please sign in to comment.