Skip to content

Commit

Permalink
Merge pull request #479 from nasa-jpl/fix/dayjs-default-export
Browse files Browse the repository at this point in the history
Fix/dayjs default export
  • Loading branch information
jamesray committed Jul 1, 2024
2 parents 18aaa4a + e072cf2 commit 6490903
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@explorer-1/vue",
"version": "0.0.4",
"version": "0.0.5",
"private": false,
"publishConfig": {
"access": "public"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { defineComponent } from 'vue'
import { ICalendar } from 'datebook'
import type { CalendarOptions } from 'datebook'
// @ts-ignore
import dayjs from 'dayjs'
import * as dayjs from 'dayjs'
import BaseButton from './../BaseButton/BaseButton.vue'
export default defineComponent({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
// @ts-nocheck
import type { PropType } from 'vue'
import { defineComponent } from 'vue'
import dayjs from 'dayjs'
import * as dayjs from 'dayjs'
import BaseUnitToggle, { UnitSystemName } from './../BaseUnitToggle/BaseUnitToggle.vue'
export const distanceTypes = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
import { defineComponent } from 'vue'
import type { ElasticSearchPage } from '../../interfaces'
// @ts-ignore
import dayjs from 'dayjs'
import * as dayjs from 'dayjs'
import SearchResultCard from './../SearchResultCard/SearchResultCard.vue'
import SearchResultGridItem from './../SearchResultGridItem/SearchResultGridItem.vue'
Expand Down

0 comments on commit 6490903

Please sign in to comment.