Skip to content

Commit

Permalink
reverting PR #479 (#489)
Browse files Browse the repository at this point in the history
fixes dayjs imports in external applications
  • Loading branch information
stephiescastle committed Jul 11, 2024
1 parent c0110fa commit 64acaa6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 * as dayjs from 'dayjs'
import 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 * as dayjs from 'dayjs'
import 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 * as dayjs from 'dayjs'
import dayjs from 'dayjs'
import SearchResultCard from './../SearchResultCard/SearchResultCard.vue'
import SearchResultGridItem from './../SearchResultGridItem/SearchResultGridItem.vue'
Expand Down

0 comments on commit 64acaa6

Please sign in to comment.