Skip to content

Commit

Permalink
move utils into schedule component
Browse files Browse the repository at this point in the history
  • Loading branch information
odkhang committed Aug 12, 2024
1 parent 73c2b63 commit 4956ef7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
// - optionally only show venueless rooms
import moment from 'moment-timezone'
import Session from './Session'
import { getLocalizedString, getPrettyDuration } from 'utils'
import { getLocalizedString, getPrettyDuration } from 'views/schedule/utils'
const getSliceName = function (date) {
return `slice-${date.format('MM-DD-HH-mm')}`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</template>
<script>
import moment from 'moment-timezone'
import { getLocalizedString } from 'utils'
import { getLocalizedString } from 'views/schedule/utils'
import Session from './Session'
export default {
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/views/schedule/schedule-components/Session.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ a.c-linear-schedule-session(:class="{faved}", :style="style", :href="link", @cli
<script>
import moment from 'moment-timezone'
import MarkdownIt from 'markdown-it'
import { getLocalizedString, getPrettyDuration } from 'utils'
import { getLocalizedString, getPrettyDuration } from 'views/schedule/utils'
const markdownIt = MarkdownIt({
linkify: true,
Expand Down
File renamed without changes.

0 comments on commit 4956ef7

Please sign in to comment.